9 lines
112 B
TypeScript
Raw Normal View History

2021-06-09 20:58:13 +08:00
export interface ReqHello {
name: string
}
export interface ResHello {
reply: string,
time: Date
}