@meetploy/types 1.14.0 → 1.15.0
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/globals.d.ts +6 -0
- package/package.json +1 -1
package/globals.d.ts
CHANGED
|
@@ -27,6 +27,12 @@ declare global {
|
|
|
27
27
|
type DBResult<T = unknown> = import("@meetploy/types").DBResult<T>;
|
|
28
28
|
type D1Result<T = unknown> = import("@meetploy/types").D1Result<T>;
|
|
29
29
|
type DBResultMeta = import("@meetploy/types").DBResultMeta;
|
|
30
|
+
type AssetBinding = {
|
|
31
|
+
fetch: (
|
|
32
|
+
input: Request | URL | string,
|
|
33
|
+
init?: RequestInit,
|
|
34
|
+
) => Promise<Response>;
|
|
35
|
+
};
|
|
30
36
|
type KVNamespace<Metadata = unknown> =
|
|
31
37
|
import("@meetploy/types").KVNamespace<Metadata>;
|
|
32
38
|
type QueueBinding = import("@meetploy/types").QueueBinding;
|