UNPKG

@taiga-ui/core

Version:

Core library for creating Angular components and applications using Taiga UI

8 lines (7 loc) 423 B
import { InjectionToken, type Provider } from '@angular/core'; export interface TuiCalendarSheetOptions { readonly rangeMode: boolean; } export declare const TUI_CALENDAR_SHEET_DEFAULT_OPTIONS: TuiCalendarSheetOptions; export declare const TUI_CALENDAR_SHEET_OPTIONS: InjectionToken<TuiCalendarSheetOptions>; export declare function tuiCalendarSheetOptionsProvider(options: Partial<TuiCalendarSheetOptions>): Provider;