@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) • 365 B
TypeScript
import * as React from 'react';
import { AdaptableInputProps } from '../AdaptableInput';
export type AdaptableDateInputProps = AdaptableInputProps & {
showClearButton?: boolean;
};
declare const AdaptableDateInput: React.ForwardRefExoticComponent<Omit<AdaptableDateInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
export default AdaptableDateInput;