初始化版本库,可用
This commit is contained in:
24
types/Common/InputState.d.ts
vendored
Normal file
24
types/Common/InputState.d.ts
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
/**
|
||||
* 控制器的状态,按位表示.
|
||||
* @enum {number}
|
||||
*/
|
||||
export declare enum InputState {
|
||||
None = 0,
|
||||
SelectIng = 1,
|
||||
Select = 2,
|
||||
GetPoint = 4,
|
||||
GetDist = 8,
|
||||
Entsel = 16,
|
||||
GetKeyWord = 32,
|
||||
GetRect = 64,
|
||||
GetString = 128,
|
||||
All = 255
|
||||
}
|
||||
export interface KeyWord {
|
||||
msg: string;
|
||||
key: string;
|
||||
disable?: boolean;
|
||||
children?: KeyWord[];
|
||||
}
|
||||
export declare const MenuDividerKWD: KeyWord;
|
||||
//# sourceMappingURL=InputState.d.ts.map
|
Reference in New Issue
Block a user