10 lines
157 B
TypeScript
10 lines
157 B
TypeScript
|
// This is a demo code file
|
||
|
// Feel free to delete it
|
||
|
|
||
|
export interface ReqSend {
|
||
|
content: string
|
||
|
}
|
||
|
|
||
|
export interface ResSend {
|
||
|
time: Date
|
||
|
}
|