UNPKG

svix

Version:

Svix webhooks API client and webhook verification library

12 lines (11 loc) 393 B
import { ApplicationOut } from "./applicationOut"; export interface ListResponseApplicationOut { data: ApplicationOut[]; done: boolean; iterator: string | null; prevIterator?: string | null; } export declare const ListResponseApplicationOutSerializer: { _fromJsonObject(object: any): ListResponseApplicationOut; _toJsonObject(self: ListResponseApplicationOut): any; };