UNPKG

@taiga-ui/cdk

Version:

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

11 lines (10 loc) 312 B
import { type DefaultTreeAdapterTypes } from 'parse5'; type Element = DefaultTreeAdapterTypes.Element; export interface HtmlComment { readonly tag?: string; readonly withAttrs?: string[]; readonly pattern?: RegExp; readonly comment: string; filterFn?(element: Element): boolean; } export {};