/** * Google Cloud Storage implementation of Veryfront's first-party * `BlobStorage` contract. * * @module extensions/ext-blob-gcs */ import "./_dnt.polyfills.js"; import { type Extension } from "veryfront/extensions"; import { type GCSBlobStorageConfig } from "./gcs-storage.js"; /** Create an explicitly configured GCS blob-storage extension. */ export declare const extBlobGCS: (config: GCSBlobStorageConfig) => Extension; export default extBlobGCS; export { GCSBlobStorage } from "./gcs-storage.js"; export type { GCSBlobStorageConfig, GCSBlobStorageDependencies, GCSFetch } from "./gcs-storage.js"; //# sourceMappingURL=index.d.ts.map