Files
lstV2/server/types/JobInfo.ts

7 lines
117 B
TypeScript

export interface JobInfo {
id: string;
schedule: string;
nextRun: Date | null;
isRunning: boolean;
}