@launchmenu/core
Version:
An environment for visual keyboard controlled applets
24 lines • 726 B
TypeScript
import { IPriority } from "./_types/IPriority";
export declare enum Priority {
EXTRAHIGH = 500,
HIGH = 400,
MEDIUM = 300,
LOW = 200,
EXTRALOW = 100,
NONE = 0
}
export declare namespace Priority {
/**
* Checks whether a given priority is non zero
* @param priority The priority to be checked
* @returns Whether this priority is not zero
*/
function isNonZero(priority: IPriority): boolean;
/**
* Checks whether a given priority is positive
* @param priority The priority to be checked
* @returns Whether this priority is positive
*/
function isPositive(priority: IPriority): boolean;
}
//# sourceMappingURL=Priority.d.ts.map