TSRPC_Test/test/proto/a/b/c/PtlTest.ts
2022-04-29 15:25:10 +08:00

10 lines
157 B
TypeScript

import { MsgChat } from '../../../MsgChat';
export interface ReqTest {
name: string
};
export type ResTest = {
reply: string,
chat?: MsgChat
};