antd
Version:
An enterprise-class UI design language and React-based implementation
15 lines (14 loc) • 456 B
TypeScript
/// <reference types="react" />
import { Component } from 'react';
export default class WeekPicker extends 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;
}