@bizkit.io/webclient 0.1.3 → 0.1.4
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/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7,10 +7,10 @@ type BizkitToken = {
|
|
|
7
7
|
url: string;
|
|
8
8
|
};
|
|
9
9
|
declare function bizkit_init(production: boolean): Promise<void>;
|
|
10
|
-
declare function get_bizkit_token(): Promise<BizkitToken
|
|
10
|
+
declare function get_bizkit_token(): Promise<BizkitToken>;
|
|
11
11
|
declare global {
|
|
12
12
|
function bizkit_init(production: boolean): Promise<void>;
|
|
13
|
-
function get_bizkit_token(): Promise<BizkitToken
|
|
13
|
+
function get_bizkit_token(): Promise<BizkitToken>;
|
|
14
14
|
}
|
|
15
15
|
//#endregion
|
|
16
16
|
export { BizkitToken, bizkit_init, get_bizkit_token };
|