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