Protocols/MsgChat.ts
2023-08-31 16:59:11 +08:00

7 lines
125 B
TypeScript

// This is a demo code file
// Feel free to delete it
export interface MsgChat {
content: string,
time: Date
}