UNPKG

@aimake/nanod

Version:

## 设计模式 NANO DESIGN 是面向于企业级中台化应用的解决方案。服务于 ToB 和 ToE 类型的单页应用,应用于各产品中从而产出了一套设计及前端规范。

19 lines (18 loc) 596 B
import * as React from 'react'; import * as moment from 'moment'; 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: moment.Moment | null) => void; clearSelection: (e: React.MouseEvent<HTMLElement>) => void; focus(): void; blur(): void; saveInput: (node: any) => void; render(): JSX.Element; }