Documentation

    Interface SyncStore

    An sync key-value store.

    interface SyncStore {
        delete(key: string): void;
        get(key: string): null | string;
        set(key: string, value: string): void;
    }
    Index

    Methods

    Methods

    • Parameters

      • key: string

      Returns void

    • Parameters

      • key: string

      Returns null | string

    • Parameters

      • key: string
      • value: string

      Returns void

    MMNEPVFCICPMFPCPTTAAATR