material-ui-pickers
Version:
React components, that implements material design pickers for material-ui v1
12 lines (11 loc) • 348 B
TypeScript
/// <reference types="react" />
import { IUtils } from '@date-io/core/IUtils';
export declare const getHourNumbers: ({ ampm, utils, date, }: {
ampm: boolean;
utils: IUtils<any>;
date: any;
}) => JSX.Element[];
export declare const getMinutesNumbers: ({ value, utils, }: {
value: number;
utils: IUtils<any>;
}) => JSX.Element[];