13 lines
445 B
TypeScript
13 lines
445 B
TypeScript
import { type BackgroundTaskStatus } from "./backgroundTaskStatus";
|
|
import { type BackgroundTaskType } from "./backgroundTaskType";
|
|
export interface ExpungeAllContentsOut {
|
|
id: string;
|
|
status: BackgroundTaskStatus;
|
|
task: BackgroundTaskType;
|
|
updatedAt: Date;
|
|
}
|
|
export declare const ExpungeAllContentsOutSerializer: {
|
|
_fromJsonObject(object: any): ExpungeAllContentsOut;
|
|
_toJsonObject(self: ExpungeAllContentsOut): any;
|
|
};
|