antd-management-fast-framework 2.11.179 → 2.11.180
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# antd-management-fast-common
|
|
2
|
+
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
## Instruction
|
|
6
|
+
|
|
7
|
+
Github项目README.md模板
|
|
8
|
+
(项目背景/作用介绍)
|
|
9
|
+
|
|
10
|
+
### 示例
|
|
11
|
+
|
|
12
|
+
把使用了该项目的案例放在这里。可以放APK下载链接,或者简单放几张截图, 使用相对路径插入图片。 格式是! 【】 (相对路径)(示例一开始就放出来,方便浏览者一眼就看出是不是想找的东西)
|
|
13
|
+
|
|
14
|
+
### 特性(可选)
|
|
15
|
+
|
|
16
|
+
- 特性A
|
|
17
|
+
|
|
18
|
+
- 特性B
|
|
19
|
+
|
|
20
|
+
### 原理说明(可选)阐述项目是基于什么思路设计的
|
|
21
|
+
|
|
22
|
+
### 下载安装
|
|
23
|
+
|
|
24
|
+
Gradle:
|
|
25
|
+
|
|
26
|
+
```xml
|
|
27
|
+
compile 'xxx'
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
(说明项目的配置方法,android开源库多用Gradle导入)
|
|
31
|
+
|
|
32
|
+
### 使用方法怎么使用,有哪些步骤哪些接口。
|
|
33
|
+
|
|
34
|
+
### 注意事项
|
|
35
|
+
|
|
36
|
+
比如混淆方法等
|
|
37
|
+
|
|
38
|
+
### TODO(可选)接下来的开发/维护计划。
|
|
39
|
+
|
|
40
|
+
## License
|
|
41
|
+
|
|
42
|
+
遵守的协议
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export class AuthorizationWrapper extends SupplementWrapper {
|
|
2
|
-
static getDerivedStateFromProps(nextProperties: any, previousState: any):
|
|
2
|
+
static getDerivedStateFromProps(nextProperties: any, previousState: any): Object;
|
|
3
3
|
getCurrentOperator: () => any;
|
|
4
4
|
reloadCurrentOperator: ({ successCallback, failCallback }: {
|
|
5
5
|
successCallback?: null | undefined;
|
|
@@ -5,6 +5,6 @@
|
|
|
5
5
|
* @extends SupplementCore
|
|
6
6
|
*/
|
|
7
7
|
export class Supplement extends SupplementCore {
|
|
8
|
-
static getDerivedStateFromProps(nextProperties: any, previousState: any):
|
|
8
|
+
static getDerivedStateFromProps(nextProperties: any, previousState: any): Object;
|
|
9
9
|
}
|
|
10
10
|
import { SupplementCore } from '../SupplementCore';
|