网络管理类

This commit is contained in:
宝爷
2019-10-08 22:16:48 +08:00
parent 181e6237a0
commit fc524ff701
2 changed files with 38 additions and 0 deletions

View File

@@ -1,4 +1,10 @@
/*
* 网络相关接口定义
*
* 2019-10-8 by 宝爷
*/
export type NetData = (string | ArrayBufferLike | Blob | ArrayBufferView);
export type NetCallFunc = (mainCmd: number, subCmd: number, data: any) => void;