UNPKG

asciitorium

Version:
11 lines (10 loc) 312 B
import { State } from './State.js'; export declare class PersistentState<T> extends State<T> { private storageKey; constructor(initialValue: T, storageKey: string); get value(): T; set value(newValue: T); private saveToStorage; private static loadFromStorage; clearStorage(): void; }