UNPKG

geostyler

Version:
9 lines (8 loc) 372 B
import { default as React } from 'react'; export interface SelectableProps extends React.PropsWithChildren { /** The ids of the selected items. */ selection?: number[]; /** The change event that is triggered, when the selection changes. */ onSelectionChange?: (selectedIdxs: number[]) => void; } export declare const Selectable: React.FC<SelectableProps>;