import { Storage } from "@google-cloud/storage"; export interface GcsFileIdentifier { bucket: string; name: string; } export interface GcsPublicFile extends GcsFileIdentifier { publicUrl: string; } export interface WriteFileOptions { data: string | Buffer; fileName: string; publicReadable?: boolean; contentType?: string; } export interface CopyFileOptions { fileName?: string; filePath?: string; } export interface CreateStorageServiceOptions { bucketName?: string; bucketNamePrefix?: string; origin?: string; skipBucketValidation?: boolean; storage?: Storage; } export interface StorageServiceOptions extends CreateStorageServiceOptions { } //# sourceMappingURL=types.d.ts.map