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