@putkoff/abstract-utilities 0.1.176 → 0.1.178
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.
|
@@ -7,7 +7,7 @@ export declare function stripHost(str: string): string;
|
|
|
7
7
|
* from the BASE_API_URL entry in your JSON config.
|
|
8
8
|
*/
|
|
9
9
|
export declare function get_app_config_url(endpoint: string): Promise<any>;
|
|
10
|
-
export declare function fetchIt(
|
|
10
|
+
export declare function fetchIt(url: any, body?: any, method?: any, headers?: Record<string, string> | null, blob?: boolean, noApi?: boolean, withCredentials?: boolean, returnJson?: boolean, returnReult?: boolean): Promise<any>;
|
|
11
11
|
export declare function secureFetchIt<T>(endpoint: any, body?: any, method?: any, headers?: Record<string, string> | null, blob?: boolean, noApi?: boolean, withCredentials?: boolean, returnJson?: boolean, returnReult?: boolean): Promise<T>;
|
|
12
12
|
export declare function secureFetchIt(endpoint: any, body?: any, method?: any, headers?: Record<string, string> | null, blob?: boolean, noApi?: boolean, withCredentials?: boolean, returnJson?: boolean, returnReult?: boolean): Promise<Blob>;
|
|
13
13
|
export declare function requestPatch(url: string, body?: unknown): Promise<Response>;
|