UNPKG

antd-meck

Version:

An enterprise-class UI design language and React-based implementation

15 lines (14 loc) 459 B
/// <reference types="react" /> import * as React from 'react'; export default class WeekPicker extends React.Component<any, any> { static defaultProps: { format: string; allowClear: boolean; }; constructor(props: any); componentWillReceiveProps(nextProps: any): void; weekDateRender: (current: any) => JSX.Element; handleChange: (value: any) => void; clearSelection: (e: any) => void; render(): JSX.Element; }