UNPKG

ngx-bootstrap-icons

Version:

Bootstrap Icons components library for your Angular Applications

16 lines (15 loc) 484 B
import { InjectionToken } from '@angular/core'; import { ColorTheme } from '../enums/color-theme.enum'; import { ColorThemeType } from '../types/color-theme.type'; /** * Module configuration interface. */ export interface IModuleConfigOptions { /** width */ width?: string; /** height */ height?: string; /** color theme */ theme?: ColorTheme | ColorThemeType; } export declare const MODULE_CONFIG_TOKEN: InjectionToken<IModuleConfigOptions>;