UNPKG

svix

Version:

Svix webhooks API client and webhook verification library

13 lines (12 loc) 313 B
export interface ApiTokenOut { createdAt: Date; expiresAt?: Date | null; id: string; name?: string | null; scopes?: string[] | null; token: string; } export declare const ApiTokenOutSerializer: { _fromJsonObject(object: any): ApiTokenOut; _toJsonObject(self: ApiTokenOut): any; };