|
|
|
@ -2,6 +2,8 @@
|
|
|
|
/* tslint:disable */
|
|
|
|
/* tslint:disable */
|
|
|
|
/* eslint-disable */
|
|
|
|
/* eslint-disable */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import type { Schedule } from './Schedule';
|
|
|
|
|
|
|
|
|
|
|
|
export type Task = {
|
|
|
|
export type Task = {
|
|
|
|
key: string;
|
|
|
|
key: string;
|
|
|
|
title?: string;
|
|
|
|
title?: string;
|
|
|
|
@ -11,6 +13,6 @@ export type Task = {
|
|
|
|
confirming: boolean;
|
|
|
|
confirming: boolean;
|
|
|
|
data: Record<string, any>;
|
|
|
|
data: Record<string, any>;
|
|
|
|
error: string;
|
|
|
|
error: string;
|
|
|
|
schedule: Record<string, any>;
|
|
|
|
schedule: Schedule;
|
|
|
|
options?: Record<string, any>;
|
|
|
|
options?: Record<string, any>;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|