@ribbon-studios/js-utils 1.4.0 → 1.4.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.
Files changed (2) hide show
  1. package/dist/rfetch.d.ts +1 -1
  2. package/package.json +1 -1
package/dist/rfetch.d.ts CHANGED
@@ -11,7 +11,7 @@ export type RibbonFetchError<R> = {
11
11
  status: number;
12
12
  content: R;
13
13
  };
14
- export type RibbonFetchInterceptor = (url: URL, options: RequestInit) => RibbonFetchOptions | Promise<RibbonFetchOptions>;
14
+ export type RibbonFetchInterceptor = (url: URL, options: RequestInit) => RequestInit | Promise<RequestInit>;
15
15
  /**
16
16
  * A lightweight wrapper around fetch to simplify its usage.
17
17
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ribbon-studios/js-utils",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "Collection of generic javascript utilities curated by the Rainbow Cafe~",
5
5
  "type": "module",
6
6
  "source": "src/*.ts",