ontime-components
Version:
List of react components
13 lines (12 loc) • 368 B
TypeScript
import { PureComponent } from 'react';
import { IProps } from '../../libs/interfaces';
declare type TMapValue = string | Function;
interface IItemSelectProps extends IProps {
data?: any;
selected?: boolean;
mapValue?: TMapValue;
}
declare class Item extends PureComponent<IItemSelectProps> {
render(): JSX.Element;
}
export { Item, IItemSelectProps };