UNPKG

@taiga-ui/kit

Version:

Taiga UI Angular main components kit

10 lines (9 loc) 488 B
import type { Provider } from '@angular/core'; import { InjectionToken } from '@angular/core'; export interface TuiFluidTypographyOptions { readonly min: number; readonly max: number; } export declare const TUI_FLUID_TYPOGRAPHY_DEFAULT_OPTIONS: TuiFluidTypographyOptions; export declare const TUI_FLUID_TYPOGRAPHY_OPTIONS: InjectionToken<TuiFluidTypographyOptions>; export declare function tuiFluidTypographyOptionsProvider(options: Partial<TuiFluidTypographyOptions>): Provider;