UNPKG

@taiga-ui/cdk

Version:

Base library for creating Angular components and applications using Taiga UI principles regarding of actual visual appearance

9 lines (8 loc) 277 B
import { type Element } from 'parse5/dist/tree-adapters/default'; export interface HtmlComment { readonly tag?: string; readonly withAttrs?: string[]; readonly pattern?: RegExp; readonly comment: string; readonly filterFn?: (element: Element) => boolean; }