UNPKG

@taiga-ui/core

Version:

Core library for creating Angular components and applications using Taiga UI

7 lines (6 loc) 273 B
import { type ExistingProvider, type Type } from '@angular/core'; export declare abstract class TuiVehicle { abstract readonly type: string; abstract toggle(value: boolean): void; } export declare function tuiAsVehicle(vehicle: Type<TuiVehicle>): ExistingProvider;