UNPKG

mendix

Version:

Mendix pluggable widgets API

14 lines (10 loc) 337 B
import { Component } from 'react'; import { PropsWithChildren } from 'react'; export declare class Selectable<T> extends Component<SelectableProps<T>> { constructor(props: SelectableProps<T>); } export declare interface SelectableProps<T> extends PropsWithChildren { object: T; caption?: string; } export { }