UNPKG

svix

Version:

Svix webhooks API client and webhook verification library

12 lines (11 loc) 384 B
import { type ConnectorOut } from "./connectorOut"; export interface ListResponseConnectorOut { data: ConnectorOut[]; done: boolean; iterator: string | null; prevIterator?: string | null; } export declare const ListResponseConnectorOutSerializer: { _fromJsonObject(object: any): ListResponseConnectorOut; _toJsonObject(self: ListResponseConnectorOut): any; };