UNPKG

zent

Version:

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

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