10 lines
181 B
TypeScript
10 lines
181 B
TypeScript
export type RepeatableJob = {
|
|
key: string;
|
|
name: string;
|
|
id: string | null;
|
|
endDate: number | null;
|
|
tz: string | null;
|
|
pattern: string;
|
|
next: number;
|
|
};
|