Protocols/MsgChat.ts

7 lines
125 B
TypeScript
Raw Permalink Normal View History

2023-08-31 08:59:11 +00:00
// This is a demo code file
// Feel free to delete it
export interface MsgChat {
content: string,
time: Date
}