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
13 lines (12 loc) • 475 B
TypeScript
import type { FlowbiteClass } from './type-definitions';
/**
* Provide an abstract class used in theming system of flowbite-angular.
*/
export declare abstract class FlowbiteThemeService<TProperties> {
/**
* This function prepare the component's classes, based on properties, used in the template of the component.
*
* @param properties Properties of the component being styled.
*/
abstract getClasses(properties: TProperties): FlowbiteClass;
}