interface StorageMain {
    $get(key, isGlobal): Promise<KeysToAnyValues>;
    $getAll(isGlobal): Promise<KeysToKeysToAnyValue>;
    $set(key, value, isGlobal): Promise<boolean>;
}

Implemented by

Methods

Methods