@be-link/request 1.44.0 → 1.45.0
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/dist/beLinkUserInfo.d.ts +12 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/createInit.d.ts +0 -14
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
type InitData = {
|
|
2
|
+
name: string;
|
|
3
|
+
[key: string]: any;
|
|
4
|
+
};
|
|
5
|
+
declare class BeLinkUserInfo {
|
|
6
|
+
private userInfo;
|
|
7
|
+
constructor();
|
|
8
|
+
init(userInfo: InitData): void;
|
|
9
|
+
getParams(): InitData;
|
|
10
|
+
}
|
|
11
|
+
declare const beLinkUserInfo: BeLinkUserInfo;
|
|
12
|
+
export default beLinkUserInfo;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export { default as callFunction } from './callFunction';
|
|
2
2
|
export { default as request } from './request';
|
|
3
3
|
export { default as beLinkRequest } from './beLinkRequest';
|
|
4
|
-
export { default as
|
|
4
|
+
export { default as beLinkUserInfo } from './beLinkUserInfo';
|