@taiga-ui/cdk
Version:
Base library for creating Angular components and applications using Taiga UI principles regarding of actual visual appearance
13 lines (12 loc) • 377 B
TypeScript
import type { Element } from 'parse5/dist/tree-adapters/default';
export interface ReplacementAttribute {
readonly from: {
readonly attrName: string;
readonly filterFn?: (element: Element) => boolean;
readonly withAttrsNames?: string[];
readonly withTagNames?: string[];
};
readonly to: {
readonly attrName: string;
};
}