UNPKG

@taiga-ui/kit

Version:
21 lines (20 loc) 937 B
import { ElementRef, NgZone } from '@angular/core'; import { TuiBrightness } from '@taiga-ui/core'; import { Observable } from 'rxjs'; export declare class TuiUnderlineComponent { private readonly ngZone; private readonly animationFrame$; private readonly mobileAware; private readonly ios; private readonly android; readonly mode$: Observable<TuiBrightness | null>; set element(element: HTMLElement | null); readonly isIos: boolean; readonly isAndroid: boolean; private readonly element$; private readonly refresh$; readonly transition$: Observable<"all" | null> & Function; readonly transform$: Observable<string | null> & Function; readonly width$: Observable<number> & Function; constructor({ nativeElement }: ElementRef, ngZone: NgZone, animationFrame$: Observable<number>, mobileAware: boolean, ios: boolean, android: boolean, mode$: Observable<TuiBrightness | null>); }