UNPKG

@taiga-ui/kit

Version:

Taiga UI Angular main components kit

12 lines (11 loc) 588 B
import type { Provider } from '@angular/core'; import { InjectionToken } from '@angular/core'; import type { TuiValueTransformer } from '@taiga-ui/cdk/classes'; import type { TuiDay, 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;