UNPKG

@alitajs/antd-plus

Version:

基于 ant-design 封装的偏业务组件

10 lines (9 loc) 326 B
import React from 'react'; import { TimeData, BaseProps } from './interface'; export declare type Mark = 'day' | 'week' | 'month' | 'year'; export declare type MarkTexts = Record<Mark, string>; interface FastProps extends BaseProps<Mark> { value?: TimeData; } declare const Fast: React.FC<FastProps>; export default Fast;