@taiga-ui/cdk
Version:
Base library for creating Angular components and applications using Taiga UI principles regarding of actual visual appearance
12 lines (11 loc) • 392 B
TypeScript
import { type Element } from 'parse5/dist/tree-adapters/default';
export interface ReplacementAttributeToDirective {
readonly componentSelector: string[] | string;
readonly directive: string;
readonly directiveModule: {
readonly moduleSpecifier: string;
readonly name: string;
};
readonly inputProperty: string;
filterFn?(element: Element): boolean;
}