TESSA Web API
    Preparing search index...

    Interface IDbEnumerationProvider

    interface IDbEnumerationProvider {
        getAll<Type extends DbEnumerationItemBase<TKey>, TKey>(
            type: DbEnumerationType<Type, TKey>,
        ): Type[];
        getById<Type extends DbEnumerationItemBase<TKey>, TKey>(
            type: DbEnumerationType<Type, TKey>,
            id: TKey,
        ): undefined | Type;
        setEnumerationData(data: IStorage): void;
    }

    Implemented by

    Index

    Methods

    • Parameters

      Returns void