@taiga-ui/core
Version:
Core library for creating Angular components and applications using Taiga UI
17 lines (16 loc) • 763 B
TypeScript
import { type AfterViewInit, type ExistingProvider, type Type } from '@angular/core';
import { Observable } from 'rxjs';
import * as i0 from "@angular/core";
export declare abstract class TuiDriver extends Observable<boolean> {
abstract readonly type: string;
}
export declare function tuiAsDriver(driver: Type<TuiDriver>): ExistingProvider;
export declare abstract class TuiDriverDirective implements AfterViewInit {
abstract type: string;
private readonly destroyRef;
private readonly drivers;
private readonly vehicles;
ngAfterViewInit(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<TuiDriverDirective, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<TuiDriverDirective, never, never, {}, {}, never, never, false, never>;
}