UNPKG

svix

Version:

Svix webhooks API client and webhook verification library

15 lines (14 loc) 364 B
export interface MessageOut { channels?: string[] | null; deliverAt?: Date | null; eventId?: string | null; eventType: string; id: string; payload: any; tags?: string[] | null; timestamp: Date; } export declare const MessageOutSerializer: { _fromJsonObject(object: any): MessageOut; _toJsonObject(self: MessageOut): any; };