Files
FrenoCorp/node_modules/svix/dist/models/eventOut.d.ts

10 lines
225 B
TypeScript

export interface EventOut {
eventType: string;
payload: string;
timestamp: Date;
}
export declare const EventOutSerializer: {
_fromJsonObject(object: any): EventOut;
_toJsonObject(self: EventOut): any;
};