import { IStartAtParams } from './contracts/IStartAtParams.js'; import { ListAllSchedulersResponse } from './contracts/listAllSchedulersResponse.js'; import { GetSchedulerResponse } from './contracts/getSchedulerResponse.js'; export interface IScheduler { startAt(params: IStartAtParams): Promise; list(size?: number, cursor?: string): Promise; get(scheduleId: string): Promise; cancel(scheduleId: string): Promise; } //# sourceMappingURL=IScheduler.d.ts.map