UNPKG

svix

Version:

Svix webhooks API client and webhook verification library

12 lines (11 loc) 376 B
import { type BackgroundTaskStatus } from "./backgroundTaskStatus"; import { type BackgroundTaskType } from "./backgroundTaskType"; export interface ReplayOut { id: string; status: BackgroundTaskStatus; task: BackgroundTaskType; } export declare const ReplayOutSerializer: { _fromJsonObject(object: any): ReplayOut; _toJsonObject(self: ReplayOut): any; };