9 lines
200 B
TypeScript
9 lines
200 B
TypeScript
export interface EventIn {
|
|
eventType: string;
|
|
payload: string;
|
|
}
|
|
export declare const EventInSerializer: {
|
|
_fromJsonObject(object: any): EventIn;
|
|
_toJsonObject(self: EventIn): any;
|
|
};
|