We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 660b62f commit 900bf75Copy full SHA for 900bf75
modules/data/src/selectors/entity-selectors$.ts
@@ -27,6 +27,9 @@ export interface EntitySelectors$<T> {
27
/** Name of the entity collection for these selectors$ */
28
readonly entityName: string;
29
30
+ /** Names from custom selectors from additionalCollectionState fits here, 'any' to avoid conflict with entityName */
31
+ readonly [name: string]: Observable<any> | Store<any> | any;
32
+
33
/** Observable of the collection as a whole */
34
readonly collection$: Observable<EntityCollection> | Store<EntityCollection>;
35
0 commit comments