@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
13 lines (12 loc) • 551 B
TypeScript
import * as React from 'react';
export type InternalAdaptableDateEditorApi = {
focus: VoidFunction;
};
export type InternalAdaptableDateEditorProps = {
defaultValue?: string | Date | number | null;
value?: string | Date | number | null;
dateFormat: string;
onValueChange?: (value: Date | null) => void;
onStopEdit?: (keyboardEventKey?: string) => void;
};
export declare const InternalAdaptableDateEditor: React.ForwardRefExoticComponent<InternalAdaptableDateEditorProps & React.RefAttributes<InternalAdaptableDateEditorApi>>;