@exadel/esl
Version:
Exadel Smart Library (ESL) is the lightweight custom elements library that provide a set of super-flexible components
17 lines (16 loc) • 514 B
TypeScript
import type { ESLPopupTagShape } from '../../esl-popup/core/esl-popup.shape';
import type { ESLTooltip } from './esl-tooltip';
/**
* Tag declaration interface of {@link ESLTooltip} element
* Used for TSX declaration
*/
export interface ESLTooltipTagShape<T extends ESLTooltip = ESLTooltip> extends ESLPopupTagShape<T> {
}
declare global {
namespace JSX {
interface IntrinsicElements {
/** {@link ESLTooltip} custom tag */
'esl-tooltip': ESLTooltipTagShape;
}
}
}