import { ITask } from "./task"; export interface IScheduler { runTask(inputs: any[], task: ITask): Promise; }