@exadel/esl
Version:
Exadel Smart Library (ESL) is the lightweight custom elements library that provide a set of super-flexible components
11 lines (10 loc) • 473 B
TypeScript
import type { ESLBaseElementShape } from '../../esl-base-element/core/esl-base-element.shape';
import type { ESLToggleableDispatcher } from './esl-toggleable-dispatcher';
/**
* Tag declaration interface of {@link ESLToggleableDispatcher} element
* Used for TSX declaration
*/
export interface ESLToggleableDispatcherTagShape extends ESLBaseElementShape<ESLToggleableDispatcher> {
/** Children are not allowed for ESLToggleableDispatcher */
children?: never[];
}