geostyler
Version:
Framework for styling geodata
9 lines (8 loc) • 372 B
TypeScript
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>;