Interface CollectionMap<T>

Used by the frontend for dynamically fetching data from the DB as needed

interface CollectionMap<T> {
    [collectionId: string]: BitBadgesCollection<T> | undefined;
}

Type Parameters

Indexable

[collectionId: string]: BitBadgesCollection<T> | undefined