UNPKG

@shoelace-style/shoelace

Version:

A forward-thinking library of web components.

10 lines (9 loc) 276 B
import type SlTreeItem from '../components/tree-item/tree-item.js'; export type SlSelectionChangeEvent = CustomEvent<{ selection: SlTreeItem[]; }>; declare global { interface GlobalEventHandlersEventMap { 'sl-selection-change': SlSelectionChangeEvent; } }