astro-ghostcms/.pnpm-store/v3/files/df/b390190df9904a4fc3ca1640737...

16 lines
406 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
export declare class PreferenceStore {
private dir;
private file;
constructor(dir: string, filename?: string);
private _store?;
private get store();
private set store(value);
write(): void;
clear(): void;
delete(key: string): boolean;
get(key: string): any;
has(key: string): boolean;
set(key: string, value: any): void;
getAll(): Record<string, any>;
}