2021-06-09 20:58:13 +08:00

9 lines
112 B
TypeScript

export interface ReqHello {
name: string
}
export interface ResHello {
reply: string,
time: Date
}