@parcel/types-internal 2.12.1-canary.3198 → 2.12.1-canary.3199
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/lib/Cache.d.ts +1 -0
- package/package.json +4 -4
- package/src/Cache.js +1 -0
package/lib/Cache.d.ts
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@parcel/types-internal",
|
3
|
-
"version": "2.12.1-canary.
|
3
|
+
"version": "2.12.1-canary.3199+03983cb1b",
|
4
4
|
"license": "MIT",
|
5
5
|
"main": "src/index.js",
|
6
6
|
"types": "lib/index.d.ts",
|
@@ -16,10 +16,10 @@
|
|
16
16
|
"check-ts": "tsc --noEmit lib/index.d.ts"
|
17
17
|
},
|
18
18
|
"dependencies": {
|
19
|
-
"@parcel/diagnostic": "2.0.0-canary.
|
20
|
-
"@parcel/feature-flags": "2.12.1-canary.
|
19
|
+
"@parcel/diagnostic": "2.0.0-canary.1576+03983cb1b",
|
20
|
+
"@parcel/feature-flags": "2.12.1-canary.3199+03983cb1b",
|
21
21
|
"@parcel/source-map": "^2.1.1",
|
22
22
|
"utility-types": "^3.10.0"
|
23
23
|
},
|
24
|
-
"gitHead": "
|
24
|
+
"gitHead": "03983cb1b4fead7e36a90ed847c5af0d230d7431"
|
25
25
|
}
|
package/src/Cache.js
CHANGED
@@ -18,6 +18,7 @@ export interface Cache {
|
|
18
18
|
contents: Buffer | string,
|
19
19
|
options?: {|signal?: AbortSignal|},
|
20
20
|
): Promise<void>;
|
21
|
+
deleteLargeBlob(key: string): Promise<void>;
|
21
22
|
getBuffer(key: string): Promise<?Buffer>;
|
22
23
|
/**
|
23
24
|
* In a multi-threaded environment, where there are potentially multiple Cache
|