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