เพิ่ม type Schedule
This commit is contained in:
parent
04dc730adc
commit
84e8af2e5b
2 changed files with 25 additions and 1 deletions
|
|
@ -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 };
|
||||||
|
|
@ -32,4 +32,15 @@ interface BackUpRunning {
|
||||||
tag: string;
|
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 };
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue