From 6de01c7b9e65402f42bddc57e76b7a40f7352e92 Mon Sep 17 00:00:00 2001 From: MiaoWoo Date: Thu, 1 Aug 2019 16:51:42 +0800 Subject: [PATCH] feat: add process types Signed-off-by: MiaoWoo --- src/interfaces/process.ts | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/interfaces/process.ts diff --git a/src/interfaces/process.ts b/src/interfaces/process.ts new file mode 100644 index 0000000..b11db90 --- /dev/null +++ b/src/interfaces/process.ts @@ -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; +} \ No newline at end of file