UNPKG

@exadel/esl

Version:

Exadel Smart Library (ESL) is the lightweight custom elements library that provide a set of super-flexible components

12 lines (11 loc) 496 B
import { ESLMixinElement } from '../../esl-mixin-element/core'; /** * Optional mixin element to support esl-note-ignore attribute dynamic changes */ export declare class ESLNoteIgnore extends ESLMixinElement { static is: string; /** Selector to find all dependent ESLNote elements */ protected noteSelector: string; /** Callback to handle changing of additional attributes */ attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void; }