blob: abdc25a5b32016fd9923fe55c93a523a628cf1d0 (
plain)
1
2
3
4
5
6
|
/// <reference types="@cloudflare/workers-types" />
export declare type KVAssetOptions = {
manifest?: object | string;
namespace?: KVNamespace;
};
export declare const getContentFromKVAsset: (path: string, options?: KVAssetOptions) => Promise<ArrayBuffer | null>;
|