10 lines
157 B
TypeScript
Raw Normal View History

2022-04-29 15:25:10 +08:00
import { MsgChat } from '../../../MsgChat';
export interface ReqTest {
name: string
};
export type ResTest = {
reply: string,
chat?: MsgChat
};