10 lines
157 B
TypeScript
10 lines
157 B
TypeScript
|
import { MsgChat } from '../../../MsgChat';
|
||
|
|
||
|
export interface ReqTest {
|
||
|
name: string
|
||
|
};
|
||
|
|
||
|
export type ResTest = {
|
||
|
reply: string,
|
||
|
chat?: MsgChat
|
||
|
};
|