UNPKG

@taiga-ui/kit

Version:

Taiga UI Angular main components kit

11 lines (10 loc) 561 B
import { InjectionToken, type Provider } from '@angular/core'; import { type TuiValueTransformer } from '@taiga-ui/cdk/classes'; import { type TuiDay, type TuiDayRange } from '@taiga-ui/cdk/date-time'; import { type Observable } from 'rxjs'; /** * Stream that emits calendar data change * @deprecated this should be rewritten in v5 */ export declare const TUI_CALENDAR_DATE_STREAM: InjectionToken<Observable<TuiDay | TuiDayRange | null>>; export declare function tuiDateStreamWithTransformer(transformer: InjectionToken<TuiValueTransformer<any>>): Provider;