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