@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) • 554 B
TypeScript
import type { ESLBaseElementShape } from '../../../esl-base-element/core/esl-base-element.shape';
import type { ESLCarouselInfo } from './esl-carousel.info';
export interface ESLCarouselInfoTagShape extends ESLBaseElementShape<ESLCarouselInfo> {
/** {@link ESLTraversingQuery} string to find {@link ESLCarousel} instance (alias for prop `carousel`) */
'target'?: string;
/** Format string used to render info text. Supports `{name}`, `{{name}}` and `{%name%}` */
'format'?: string;
/** Accept text content */
children?: string;
}