เพิ่ม type Schedule

This commit is contained in:
Net 2024-07-19 14:33:29 +07:00
parent 04dc730adc
commit 84e8af2e5b
2 changed files with 25 additions and 1 deletions

View file

@ -0,0 +1,13 @@
interface ScheduleCreate {
name: string;
time: string;
timeStartEvery: string;
timezone?: string;
type: string;
date: string[];
schedule: string;
startAt?: string;
}
export type { ScheduleCreate };

View file

@ -32,4 +32,15 @@ interface BackUpRunning {
tag: string;
}
export type { DataBackup, BackUpRunning };
interface Schedule {
type: string;
date: string;
time: string;
schedule: string;
name: string;
id: string;
timeStartEvery: string;
startAt?: string;
}
export type { DataBackup, BackUpRunning, Schedule };