tsbase
    Preparing search index...

    Interface IGenericStorage

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

    Implemented by

    Index

    Methods