@firebase/util 1.12.0 → 1.12.1
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.cjs.js +14 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm2017.js +14 -2
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.node.cjs.js +14 -2
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/node-esm/index.node.esm.js +14 -2
- package/dist/node-esm/index.node.esm.js.map +1 -1
- package/dist/node-esm/src/url.d.ts +1 -1
- package/dist/src/url.d.ts +1 -1
- package/dist/util-public.d.ts +1 -1
- package/dist/util.d.ts +1 -1
- package/package.json +1 -1
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
* Checks whether host is a cloud workstation or not.
|
|
19
19
|
* @public
|
|
20
20
|
*/
|
|
21
|
-
export declare function isCloudWorkstation(
|
|
21
|
+
export declare function isCloudWorkstation(url: string): boolean;
|
|
22
22
|
/**
|
|
23
23
|
* Makes a fetch request to the given server.
|
|
24
24
|
* Mostly used for forwarding cookies in Firebase Studio.
|
package/dist/src/url.d.ts
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
* Checks whether host is a cloud workstation or not.
|
|
19
19
|
* @public
|
|
20
20
|
*/
|
|
21
|
-
export declare function isCloudWorkstation(
|
|
21
|
+
export declare function isCloudWorkstation(url: string): boolean;
|
|
22
22
|
/**
|
|
23
23
|
* Makes a fetch request to the given server.
|
|
24
24
|
* Mostly used for forwarding cookies in Firebase Studio.
|
package/dist/util-public.d.ts
CHANGED
|
@@ -609,7 +609,7 @@ export declare function isCloudflareWorker(): boolean;
|
|
|
609
609
|
* Checks whether host is a cloud workstation or not.
|
|
610
610
|
* @public
|
|
611
611
|
*/
|
|
612
|
-
export declare function isCloudWorkstation(
|
|
612
|
+
export declare function isCloudWorkstation(url: string): boolean;
|
|
613
613
|
|
|
614
614
|
/** Detects Electron apps. */
|
|
615
615
|
export declare function isElectron(): boolean;
|
package/dist/util.d.ts
CHANGED
|
@@ -609,7 +609,7 @@ export declare function isCloudflareWorker(): boolean;
|
|
|
609
609
|
* Checks whether host is a cloud workstation or not.
|
|
610
610
|
* @public
|
|
611
611
|
*/
|
|
612
|
-
export declare function isCloudWorkstation(
|
|
612
|
+
export declare function isCloudWorkstation(url: string): boolean;
|
|
613
613
|
|
|
614
614
|
/** Detects Electron apps. */
|
|
615
615
|
export declare function isElectron(): boolean;
|