6 lines
171 B
TypeScript
6 lines
171 B
TypeScript
/**
|
|
* Get boolean customisation value from attribute
|
|
*/
|
|
declare function toBoolean(name: string, value: unknown, defaultValue: boolean): boolean;
|
|
|
|
export { toBoolean };
|