UNPKG

203 BTypeScriptView Raw
1/**
2 * Priority given to an operation when it is executed inside an OperationQueue.
3 */
4export declare enum QueuePriority {
5 veryLow = 0,
6 low = 1,
7 normal = 2,
8 high = 3,
9 veryHigh = 4
10}