10 lines
327 B
TypeScript
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;
|
|
};
|