svix
Version:
Svix webhooks API client and webhook verification library
12 lines (11 loc) • 424 B
TypeScript
import { type BackgroundTaskStatus } from "./backgroundTaskStatus";
import { type BackgroundTaskType } from "./backgroundTaskType";
export interface ExpungeAllContentsOut {
id: string;
status: BackgroundTaskStatus;
task: BackgroundTaskType;
}
export declare const ExpungeAllContentsOutSerializer: {
_fromJsonObject(object: any): ExpungeAllContentsOut;
_toJsonObject(self: ExpungeAllContentsOut): any;
};