UNPKG

ng-zorro-antd-mobile

Version:

An enterprise-class mobile UI components based on Ant Design and Angular

34 lines (33 loc) 821 B
import { Models } from '../date/DataTypes'; export interface PropsType { locale: Models.Locale; prefixCls?: string; pickerPrefixCls?: string; title?: string; defaultValue?: Date; value?: Date; onValueChange?: (time: Date) => void; mode?: string; minDate?: Date; maxDate?: Date; clientHeight?: number; datePickerViewLocale?: any; } export declare class TimePickerComponent { defaultProps: PropsType; props: PropsType; selfHeight: string; propsData: any; title: any; value: any; prefixCls: any; defaultValue: any; pickerPrefixCls: any; clientHeight: any; onValueChange: any; timePicker: boolean; constructor(); onDateChange: (date: Date) => void; getMinTime(date?: Date): Date; getMaxTime(date?: Date): Date; }