From 399992fce0d56aec094f5e56854eec94e0557f3b Mon Sep 17 00:00:00 2001 From: Artemy Date: Wed, 16 Aug 2023 12:23:14 +0300 Subject: [PATCH] fix: imports --- src/handlers/google.ts | 1 + src/handlers/readability.ts | 1 + 2 files changed, 2 insertions(+) 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