bool.d.ts 171 B

123456
  1. /**
  2. * Get boolean customisation value from attribute
  3. */
  4. declare function toBoolean(name: string, value: unknown, defaultValue: boolean): boolean;
  5. export { toBoolean };