UNPKG

r3bl-ts-utils

Version:

The `r3bl-ts-utils` package is a set of useful TypeScript functions and classes that can be used in Node.js and browser environments. They are inspired by Kotlin stdlib, and Rust to write code as expressions rather than statements, colorized text, powerfu

14 lines 682 B
"use strict"; /* * These types and interfaces are exported to the users of this API. They form the public facing * interface of timer-utils. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.TimerErrors = void 0; exports.TimerErrors = { CantStart_AlreadyRunning: new Error("Timer can't be started, its already running"), CantStop_NotStarted: new Error("Timer can't be stopped, as it's created but not started"), CantStart_AlreadyStopped: new Error("Stopped timer can't be started, please make a new one"), CantStop_AlreadyStopped: new Error("Stopped timer can't be stopped, please make a new one"), }; //# sourceMappingURL=externals.js.map