2020-02-26 17:46:00 -08:00
|
|
|
export interface IMessage {
|
|
|
|
type?: string;
|
2020-02-27 14:27:21 -08:00
|
|
|
to?: string;
|
2020-02-26 17:46:00 -08:00
|
|
|
topic?: string;
|
|
|
|
content?: string;
|
2024-06-20 12:09:02 -07:00
|
|
|
propagate_mode?: string;
|
2020-02-26 17:46:00 -08:00
|
|
|
}
|