UNPKG

zent

Version:

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

7 lines (6 loc) 393 B
/// <reference types="react" /> import { ISingleProps, IValueType, ISingleRelatedType } from './types'; export interface IMonthPickerProps<T extends IValueType = 'string'> extends Omit<ISingleProps, 'valueType' | 'onChange'>, ISingleRelatedType<T> { } export declare const MonthPicker: <T extends IValueType = "string">(props: IMonthPickerProps<T>) => JSX.Element; export default MonthPicker;