astro
Version:
Astro is a modern site builder with web best practices, performance, and DX front-of-mind.
12 lines (11 loc) • 391 B
TypeScript
import type { Storage } from '../definitions.js';
export declare class UnstorageFsStorage implements Storage {
#private;
constructor({ base }: {
base: URL;
});
getItem(key: string): Promise<any | null>;
getItemRaw(key: string): Promise<Buffer | null>;
setItem(key: string, value: any): Promise<void>;
setItemRaw(key: string, value: any): Promise<void>;
}