Polkadot Apps
    Preparing search index...
    interface KvStore {
        get(key: string): Promise<string | null>;
        getJSON<T>(key: string): Promise<T | null>;
        remove(key: string): Promise<void>;
        set(key: string, value: string): Promise<void>;
        setJSON(key: string, value: unknown): Promise<void>;
    }
    Index

    Methods