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) 253 B
import { type DefaultTreeAdapterTypes } from 'parse5'; type Element = DefaultTreeAdapterTypes.Element; export interface RemovableInput { readonly inputName: string; readonly tags: string[]; filterFn?(element: Element): boolean; } export {};