dtd
Version:
根据数梦工场视觉规范打造的组件库,感谢react-components和ant design
18 lines (17 loc) • 557 B
TypeScript
import * as React from 'react';
export default class WeekPicker extends React.Component<any, any> {
static defaultProps: {
format: string;
allowClear: boolean;
};
private input;
constructor(props: any);
componentWillReceiveProps(nextProps: any): void;
weekDateRender: (current: any) => JSX.Element;
handleChange: (value: any) => void;
clearSelection: (e: React.MouseEvent<HTMLElement, MouseEvent>) => void;
focus(): void;
blur(): void;
saveInput: (node: any) => void;
render(): JSX.Element;
}