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