@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) • 377 B
TypeScript
import * as React from 'react';
import { Locale } from 'date-fns';
export declare const DatepickerContext: React.Context<{
onHide?: (keyboardEventKey?: string) => void;
onShow?: VoidFunction;
locale?: Locale;
}>;
export declare const useDatepickerContext: () => {
onHide?: (keyboardEventKey?: string) => void;
onShow?: VoidFunction;
locale?: Locale;
};