mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-04 04:22:41 +00:00
6 lines
76 B
TypeScript
6 lines
76 B
TypeScript
export class WSMessage<T> {
|
|
key: string;
|
|
trigger?: string;
|
|
data: T;
|
|
}
|