@ningboyz/types 1.0.193 → 1.0.194
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/const/const_stat.ts +1 -1
package/package.json
CHANGED
package/src/const/const_stat.ts
CHANGED
|
@@ -26,7 +26,7 @@ export const CONST_STAT_DONE = 2;
|
|
|
26
26
|
/**
|
|
27
27
|
* 暂存
|
|
28
28
|
*/
|
|
29
|
-
export const CONST_STAT_TEMP =
|
|
29
|
+
export const CONST_STAT_TEMP = -4;
|
|
30
30
|
|
|
31
31
|
export type AuditStat = typeof CONST_STAT_UNDO | typeof CONST_STAT_MAKE | typeof CONST_STAT_WAIT | typeof CONST_STAT_DONE | typeof CONST_STAT_DARK | typeof CONST_STAT_TEMP;
|
|
32
32
|
|