@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) • 464 B
TypeScript
import type { ESLTriggerTagShape } from '../../esl-trigger/core/esl-trigger.shape';
import type { ESLTab } from './esl-tab';
/**
* Tag declaration interface of {@link ESLTab} element
* Used for TSX declaration
*/
export interface ESLTabTagShape extends ESLTriggerTagShape<ESLTab> {
}
declare global {
namespace JSX {
interface IntrinsicElements {
/** {@link ESLTab} custom tag */
'esl-tab': ESLTabTagShape;
}
}
}