import type { StorageEngine } from "../types/storage.js"; /** * 웹 환경이 아닌 환경에서 사용되는 기본 메모리 저장소 클래스입니다. */ export declare class MemoryStorage implements StorageEngine { private data; /** * @inheritdoc */ getItem(key: string): string | null; /** * @inheritdoc */ setItem(key: string, value: string): void; /** * @inheritdoc */ removeItem(key: string): void; } //# sourceMappingURL=memory-storage.d.ts.map