svix
Version:
Svix webhooks API client and webhook verification library
10 lines (9 loc) • 378 B
TypeScript
import { type BackgroundTaskFinishedEvent2 } from "./backgroundTaskFinishedEvent2";
export interface BackgroundTaskFinishedEvent {
data: BackgroundTaskFinishedEvent2;
type: string;
}
export declare const BackgroundTaskFinishedEventSerializer: {
_fromJsonObject(object: any): BackgroundTaskFinishedEvent;
_toJsonObject(self: BackgroundTaskFinishedEvent): any;
};