@nodegui/nodegui
Version:
A cross-platform library to build native desktop apps.
10 lines (9 loc) • 400 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TimerType = void 0;
var TimerType;
(function (TimerType) {
TimerType[TimerType["PreciseTimer"] = 0] = "PreciseTimer";
TimerType[TimerType["CoarseTimer"] = 1] = "CoarseTimer";
TimerType[TimerType["VeryCoarseTimer"] = 2] = "VeryCoarseTimer";
})(TimerType = exports.TimerType || (exports.TimerType = {}));