UNPKG

@adaptabletools/adaptable

Version:

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

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