fix: imports

This commit is contained in:
Artemy 2023-08-16 12:23:14 +03:00
parent d873be0226
commit 399992fce0
2 changed files with 2 additions and 0 deletions

View File

@ -1,5 +1,6 @@
import { DOMWindow } from "jsdom"; import { DOMWindow } from "jsdom";
import { IHandlerOutput } from "./handler.interface"; import { IHandlerOutput } from "./handler.interface";
import { EngineParseError } from "../errors";
export default async function google( export default async function google(
window: DOMWindow window: DOMWindow

View File

@ -1,6 +1,7 @@
import { Readability } from "@mozilla/readability"; import { Readability } from "@mozilla/readability";
import { IHandlerOutput } from "./handler.interface"; import { IHandlerOutput } from "./handler.interface";
import { DOMWindow } from "jsdom"; import { DOMWindow } from "jsdom";
import { EngineParseError } from "../errors";
export default async function readability( export default async function readability(
window: DOMWindow window: DOMWindow