@itwin/frontend-devtools
Version:
Debug menu and supporting UI widgets
9 lines • 405 B
TypeScript
/** @packageDocumentation
* @module Utilities
*/
/** Parses a string case-insensitively returning true for "ON", false for "OFF" undefined for "TOGGLE" or undefined, and the input string for anything else
* Used by various tools which take such arguments.
* @beta
*/
export declare function parseToggle(arg: string | undefined): string | boolean | undefined;
//# sourceMappingURL=parseToggle.d.ts.map