@taiga-ui/kit
Version:
Taiga UI Angular main components kit
11 lines (10 loc) • 369 B
TypeScript
import { AfterViewChecked, ElementRef } from '@angular/core';
/**
* A directive for projecting classes from nested children to host
*/
export declare class TuiProjectClassDirective implements AfterViewChecked {
private readonly elementRef;
classNames: readonly string[];
constructor(elementRef: ElementRef<HTMLElement>);
ngAfterViewChecked(): void;
}