@gensx/storage
Version:
Cloud storage, blobs, sqlite, and vector database providers/hooks for GenSX.
9 lines • 392 B
TypeScript
import { BlobStorageOptions } from "./types.js";
/**
* Hook to access a blob
* @param key The name of the blob to access
* @param options Optional configuration properties for the blob
* @returns A blob object for the given key
*/
export declare function useBlob<T = unknown>(key: string, options?: BlobStorageOptions): import("./types.js").Blob<T>;
//# sourceMappingURL=useBlob.d.ts.map