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
20 lines (19 loc) • 763 B
TypeScript
import type { ModalClass, ModalProperties, ModalTheme } from './modal.theme';
import type { FlowbiteThemeService } from 'flowbite-angular';
import { InjectionToken } from '@angular/core';
import * as i0 from "@angular/core";
/**
* `InjectionToken` used to import `ModalTheme` value
*
* @example
* ```
* var theme = inject(FLOWBITE_MODAL_THEME_TOKEN)
* ```
*/
export declare const FLOWBITE_MODAL_THEME_TOKEN: InjectionToken<ModalTheme>;
export declare class ModalThemeService implements FlowbiteThemeService<ModalProperties> {
private readonly baseTheme;
getClasses(properties: ModalProperties): ModalClass;
static ɵfac: i0.ɵɵFactoryDeclaration<ModalThemeService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<ModalThemeService>;
}