14 lines
444 B
TypeScript
14 lines
444 B
TypeScript
import { type BackgroundTaskStatus } from "./backgroundTaskStatus";
|
|
import { type BackgroundTaskType } from "./backgroundTaskType";
|
|
export interface BackgroundTaskOut {
|
|
data: any;
|
|
id: string;
|
|
status: BackgroundTaskStatus;
|
|
task: BackgroundTaskType;
|
|
updatedAt: Date;
|
|
}
|
|
export declare const BackgroundTaskOutSerializer: {
|
|
_fromJsonObject(object: any): BackgroundTaskOut;
|
|
_toJsonObject(self: BackgroundTaskOut): any;
|
|
};
|