TSRPC_Test/benchmark/protocols/PtlTest.ts
2022-04-29 15:25:10 +08:00

14 lines
232 B
TypeScript

import { uint } from 'tsbuffer-schema';
export interface ReqTest {
a?: uint;
b?: string;
c?: boolean;
d?: Uint8Array;
}
export interface ResTest {
a?: uint;
b?: string;
c?: boolean;
d?: Uint8Array;
}