Interface IGenericStorage

interface IGenericStorage {
    Get<T>(type, key): Result<null | T>;
    GetValue(key): Result<any>;
    Remove(key): Result<null>;
    Set<T>(key, value): Result<null>;
    SetValue(key, value): Result<null>;
}

Implemented by

Methods

Generated using TypeDoc