diff --git a/packages/scrapers/src/party/sd-scraper.ts b/packages/scrapers/src/party/sd-scraper.ts index d0c4d0254..ef07d79dd 100644 --- a/packages/scrapers/src/party/sd-scraper.ts +++ b/packages/scrapers/src/party/sd-scraper.ts @@ -1,6 +1,6 @@ import * as pdfjs from "pdfjs-dist"; import Scraper from "../scraper"; -import type { PartyDataWithoutPartyName } from "@partiguiden/party-data/writer"; +import type { PartyDataWithoutPartyName } from "@partiguiden/party-data/types"; type SectionDestination = [ { num: number; gen: number }, diff --git a/packages/scrapers/src/scraper.ts b/packages/scrapers/src/scraper.ts index ea704afe0..aec38527b 100644 --- a/packages/scrapers/src/scraper.ts +++ b/packages/scrapers/src/scraper.ts @@ -2,7 +2,7 @@ import type { Cheerio, CheerioAPI, Element } from "cheerio"; import type { PartyData, PartyDataWithoutPartyName, -} from "@partiguiden/party-data/writer"; +} from "@partiguiden/party-data/types"; import * as cheerio from "cheerio"; interface ScraperArgs {