2026-05-31 13:54:31 +02:00

5 lines
169 B
TypeScript

/**
* Get boolean customisation value from attribute
*/
declare function toBoolean(name: string, value: unknown, defaultValue: boolean): boolean;
export { toBoolean };