svix
Version:
Svix webhooks API client and webhook verification library
12 lines (11 loc) • 377 B
TypeScript
import { type EndpointOut } from "./endpointOut";
export interface ListResponseEndpointOut {
data: EndpointOut[];
done: boolean;
iterator: string | null;
prevIterator?: string | null;
}
export declare const ListResponseEndpointOutSerializer: {
_fromJsonObject(object: any): ListResponseEndpointOut;
_toJsonObject(self: ListResponseEndpointOut): any;
};