@exadel/esl
Version:
Exadel Smart Library (ESL) is the lightweight custom elements library that provide a set of super-flexible components
15 lines (14 loc) • 563 B
TypeScript
import type { ESLBaseElementShape } from '../../esl-base-element/core/esl-base-element.shape';
import type { ESLAnchornav } from './esl-anchornav';
/**
* Tag declaration interface of {@link ESLAnchornav} element
* Used for TSX declaration
*/
export interface ESLAnchornavTagShape<T extends ESLAnchornav = ESLAnchornav> extends ESLBaseElementShape<T> {
/** Item renderer which is used to build inner markup */
renderer?: string;
/** CSS classes to set on active item */
'active-class'?: string;
/** Allowed children */
children?: any;
}