utilium 2.5.6 → 2.5.8
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/requests.d.ts +1 -1
- package/dist/requests.js +1 -1
- package/package.json +1 -1
package/dist/requests.d.ts
CHANGED
|
@@ -82,7 +82,7 @@ interface SetOptions extends Options {
|
|
|
82
82
|
* Make a POST request to set (or create) data on the server and update the cache.
|
|
83
83
|
* @throws RequestError
|
|
84
84
|
*/
|
|
85
|
-
export declare function set(url: string, data: Uint8Array
|
|
85
|
+
export declare function set(url: string, data: Uint8Array, options: SetOptions, init?: RequestInit): Promise<void>;
|
|
86
86
|
/**
|
|
87
87
|
* Make a DELETE request to remove the resource from the server and clear it from the cache.
|
|
88
88
|
* @throws RequestError
|
package/dist/requests.js
CHANGED