13 lines
379 B
Markdown
13 lines
379 B
Markdown
# @any-touch/shared
|
|
在这里可以找到状态马
|
|
|
|
```javascript
|
|
// shared内部代码
|
|
export const STATUS_POSSIBLE = 'possible';
|
|
export const STATUS_START = 'start';
|
|
export const STATUS_MOVE = 'move';
|
|
export const STATUS_END = 'end';
|
|
export const STATUS_CANCELLED = 'cancel';
|
|
export const STATUS_FAILED = 'failed';
|
|
export const STATUS_RECOGNIZED = 'recognized';
|
|
``` |