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