@gdjiami/jm-mrc-components
Version:
移动端可复用组件库
12 lines (11 loc) • 455 B
TypeScript
import React from 'react';
import { MonthDayPickerValue } from '../month-day-picker';
export declare type MonthDayPickerItemValue = MonthDayPickerValue;
export interface MonthDayPickerItemProps {
value?: MonthDayPickerItemValue;
onChange?: (value: MonthDayPickerItemValue) => void;
children?: React.ReactNode;
}
export default class MonthDayPickerItem extends React.Component<MonthDayPickerItemProps> {
render(): JSX.Element;
}