@wp-playground/remote 1.0.12 → 1.0.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wp-playground/remote",
3
- "version": "1.0.12",
3
+ "version": "1.0.14",
4
4
  "description": "WordPress Playground remote host",
5
5
  "repository": {
6
6
  "type": "git",
@@ -25,5 +25,5 @@
25
25
  "access": "public",
26
26
  "directory": "../../../dist/packages/playground/remote"
27
27
  },
28
- "gitHead": "e5cb134823eedc139ca490661b75d490364cc0b7"
28
+ "gitHead": "4d191fdd33db1949e51d54e2b03decbb103db4ac"
29
29
  }
@@ -1,13 +0,0 @@
1
- export interface CachedFetchResponse {
2
- body: ReadableStream<Uint8Array>;
3
- responseInit: ResponseInit;
4
- }
5
- /**
6
- * Creates a fetch function that memoizes the response stream.
7
- * Calling it twice will return a response with the same status,
8
- * headers, and the body stream.
9
- * Memoization is keyed by URL. Method, headers etc are ignored.
10
- *
11
- * @param originalFetch The fetch function to memoize. Defaults to the global fetch.
12
- */
13
- export declare function createMemoizedFetch(originalFetch?: typeof fetch): (url: string, options?: RequestInit) => Promise<Response>;