15 lines
364 B
TypeScript
15 lines
364 B
TypeScript
export interface MessageOut {
|
|
channels?: string[] | null;
|
|
deliverAt?: Date | null;
|
|
eventId?: string | null;
|
|
eventType: string;
|
|
id: string;
|
|
payload: any;
|
|
tags?: string[] | null;
|
|
timestamp: Date;
|
|
}
|
|
export declare const MessageOutSerializer: {
|
|
_fromJsonObject(object: any): MessageOut;
|
|
_toJsonObject(self: MessageOut): any;
|
|
};
|