UNPKG

zent

Version:

一套前端设计语言和基于React的实现

6 lines (5 loc) 432 B
/// <reference types="react" /> import { IMonthPickerProps, IValueType, SingleDate } from '../../date-picker'; import { IFormComponentProps } from '../shared'; export declare type IFormMonthPickerFieldProps<T extends IValueType> = IFormComponentProps<SingleDate, Omit<IMonthPickerProps<T>, 'value'>>; export declare const FormMonthPickerField: <T extends IValueType = "string">(props: IFormMonthPickerFieldProps<T>) => JSX.Element;