UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

8 lines (7 loc) 339 B
import * as React from 'react'; import { InputProps } from '../../../components/Input'; export type AdaptableInputProps = InputProps & { showClearButton?: boolean; }; declare const AdaptableInput: React.ForwardRefExoticComponent<Omit<AdaptableInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>; export default AdaptableInput;