flowbite-angular
Version:
<div align="center"> <h1>:construction: flowbite-angular (unreleased) :construction:</h1> <p> <a href="https://flowbite.com"> <img alt="Flowbite - Tailwind CSS components" width="350" src="https://flowbite.s3.amazonaws.com/github/logo-github
15 lines (14 loc) • 428 B
TypeScript
/**
* Base definition of boolean used in flowbite-angular.
*/
export interface FlowbiteBoolean {
enabled: string;
disabled: string;
}
/**
* This function cast a boolean to the internal flowbute-angular boolean type.
*
* @param value The input to be cast.
* @returns enabled if value is true ; disabled if value is false.
*/
export declare function booleanToFlowbiteBoolean(value: boolean): keyof FlowbiteBoolean;