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

10 lines
327 B
TypeScript

import { type MessageAttemptLog } from "./messageAttemptLog";
export interface MessageAttemptLogEvent {
data: MessageAttemptLog[];
type: string;
}
export declare const MessageAttemptLogEventSerializer: {
_fromJsonObject(object: any): MessageAttemptLogEvent;
_toJsonObject(self: MessageAttemptLogEvent): any;
};