import { Driver } from "./Driver"; import { Author } from "../Domain/Author"; export interface Queue extends Driver { dispatchSourceScans(author: Author): Promise; work(): void; workSources(): void; }