UNPKG

svix

Version:

Svix webhooks API client and webhook verification library

15 lines (14 loc) 327 B
export interface StreamOut { createdAt: Date; id: string; metadata: { [key: string]: string; }; name?: string | null; uid?: string | null; updatedAt: Date; } export declare const StreamOutSerializer: { _fromJsonObject(object: any): StreamOut; _toJsonObject(self: StreamOut): any; };