@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) • 405 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 filterFn?: (element: Element) => boolean;
readonly inputProperty: string;
}