@putkoff/abstract-utilities 0.1.135 → 0.1.137
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/cjs/functions/env_utils/src/window_utils.d.ts +2 -2
- package/dist/cjs/index.js +3 -24
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/functions/env_utils/src/window_utils.d.ts +2 -2
- package/dist/esm/index.js +3 -24
- package/dist/esm/index.js.map +1 -1
- package/dist/functions/env_utils/src/window_utils.d.ts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare function get_window(): (Window & typeof globalThis) | null;
|
|
2
|
-
export declare function get_window_location():
|
|
2
|
+
export declare function get_window_location(): "https://abstractendeavors.com" | Location | null;
|
|
3
3
|
export declare function get_window_pathname(): string | null;
|
|
4
|
-
export declare function get_window_parts():
|
|
4
|
+
export declare function get_window_parts(): "https://abstractendeavors.com" | Location | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -142,9 +142,9 @@ declare const API_PREFIX = "/secure-files/api";
|
|
|
142
142
|
declare const DEV_PREFIX = "/secure-files-dev/";
|
|
143
143
|
|
|
144
144
|
declare function get_window(): (Window & typeof globalThis) | null;
|
|
145
|
-
declare function get_window_location():
|
|
145
|
+
declare function get_window_location(): "https://abstractendeavors.com" | Location | null;
|
|
146
146
|
declare function get_window_pathname(): string | null;
|
|
147
|
-
declare function get_window_parts():
|
|
147
|
+
declare function get_window_parts(): "https://abstractendeavors.com" | Location | null;
|
|
148
148
|
|
|
149
149
|
/**
|
|
150
150
|
* Given an “endpoint” slug like "api/list", build the full URL
|