diff --git a/src/handlers/google.ts b/src/handlers/google.ts index ce8f84a..116e02c 100644 --- a/src/handlers/google.ts +++ b/src/handlers/google.ts @@ -1,5 +1,6 @@ import { DOMWindow } from "jsdom"; import { IHandlerOutput } from "./handler.interface"; +import { EngineParseError } from "../errors"; export default async function google( window: DOMWindow diff --git a/src/handlers/readability.ts b/src/handlers/readability.ts index 08a718a..191a754 100644 --- a/src/handlers/readability.ts +++ b/src/handlers/readability.ts @@ -1,6 +1,7 @@ import { Readability } from "@mozilla/readability"; import { IHandlerOutput } from "./handler.interface"; import { DOMWindow } from "jsdom"; +import { EngineParseError } from "../errors"; export default async function readability( window: DOMWindow