@exadel/esl
Version:
Exadel Smart Library (ESL) is the lightweight custom elements library that provide a set of super-flexible components
16 lines (15 loc) • 508 B
TypeScript
import { ESLToggleablePlaceholder } from '../../esl-toggleable/core';
import type { ESLPopup } from './esl-popup';
export declare class ESLPopupPlaceholder extends ESLToggleablePlaceholder {
static is: string;
$origin: ESLPopup | null;
protected disconnectedCallback(): void;
}
declare global {
export interface ESLLibrary {
PopupPlaceholder: typeof ESLPopupPlaceholder;
}
export interface HTMLElementTagNameMap {
'esl-popup-placeholder': ESLPopupPlaceholder;
}
}