UNPKG

244 BTypeScriptView Raw
1export declare const State: {
2 readonly UNDETERMINED: 0;
3 readonly FAILED: 1;
4 readonly BEGAN: 2;
5 readonly CANCELLED: 3;
6 readonly ACTIVE: 4;
7 readonly END: 5;
8};
9export declare type State = typeof State[keyof typeof State];