import type { BinaryStorage } from "../types"; export class UnavailableBinaryStorage implements BinaryStorage { readonly driverName = "unavailable"; async write(): Promise { throw new Error("Binary storage is not configured for this runtime."); } async openReadStream(): Promise { return undefined; } async stat(): Promise<{ exists: false }> { return { exists: false }; } async delete(): Promise {} async deleteMany(): Promise {} async listByPrefix(): Promise> { return []; } }