UNPKG

@public-ui/components

Version:

Contains all web components that belong to KoliBri - The accessible HTML-Standard.

15 lines (14 loc) 511 B
import { type JSX } from '../../stencil-public-runtime'; import type { HrefPropType, LabelPropType, OpenPropType, TreeItemProps } from '../../schema'; export declare class KolTreeItem implements TreeItemProps { private element?; _active?: OpenPropType; _label: LabelPropType; _open?: OpenPropType; _href: HrefPropType; focus(): Promise<any>; expand(): Promise<void | undefined>; collapse(): Promise<void | undefined>; isOpen(): Promise<boolean>; render(): JSX.Element; }