7 lines
125 B
TypeScript
7 lines
125 B
TypeScript
|
// This is a demo code file
|
||
|
// Feel free to delete it
|
||
|
|
||
|
export interface MsgChat {
|
||
|
content: string,
|
||
|
time: Date
|
||
|
}
|