UNPKG

react-application-core

Version:

A react-based application core for the business applications.

9 lines (8 loc) 497 B
import { BaseTextField } from '../text-field'; import { ITimeFieldInternalState, ITimeFieldInternalProps } from './timefield.interface'; export declare class TimeField extends BaseTextField<ITimeFieldInternalProps, ITimeFieldInternalState> { static readonly defaultProps: ITimeFieldInternalProps & Partial<import("../../..").IGenericComponentProps<any>>; protected getFieldMask(): (string | RegExp)[]; protected getFieldPattern(): string; private get dateTimeSettings(); }