Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(Date-picker): prop 'onOk' typescript declaration File wrong
声明文件中onOk是一个没有参数的函数 ``` javascript onOk?: () => Array<any>; ``` 实际上应该和onChange一样,传入一个带参数的 ``` javascript onChange?: (value: Array<any>) => void; ```
- Loading branch information