forked from circlecloud/tera
1
0
Fork 0

feat: add process types

Signed-off-by: MiaoWoo <admin@yumc.pw>
master
MiaoWoo 2019-08-01 16:51:42 +08:00
parent eeb045687c
commit 6de01c7b9e
1 changed files with 18 additions and 0 deletions

18
src/interfaces/process.ts Normal file
View File

@ -0,0 +1,18 @@
interface TeraMessage {
id: string;
Name: string;
cmd: string;
addrStr: string;
message: string;
Err: TeraError
Data: any;
Params: any;
Str: string;
StrKey: string;
bFinal: boolean;
Web: boolean;
BlockNum: number;
arrContentResult: any;
ResultStr: string;
TX: string;
}