@adaptabletools/adaptable
Version:
Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
9 lines (8 loc) • 372 B
TypeScript
import * as React from 'react';
import { InputProps } from '../../../components/Input';
export type AdaptableInputProps = InputProps & {
showClearButton?: boolean;
showTriggerButton?: boolean;
};
declare const AdaptableInput: React.ForwardRefExoticComponent<Omit<AdaptableInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
export default AdaptableInput;