@vk-io/session
    Preparing search index...

    Interface ISessionStorage

    interface ISessionStorage {
        delete(key: string): Promise<boolean>;
        get(key: string): Promise<undefined | object>;
        set(key: string, value: object): Promise<boolean>;
        touch(key: string): Promise<void>;
    }

    Implemented by

    Index

    Methods