packages/store/src/selectors/selector-models.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { ɵSharedSelectorOptions, ɵSelectFromRootState } from '@ngxs/store/internals';

export interface CreationMetadata {
  containerClass: any;
  selectorName: string;
  getSelectorOptions?: () => ɵSharedSelectorOptions;
}

export interface RuntimeSelectorInfo {
  selectorOptions: ɵSharedSelectorOptions;
  argumentSelectorFunctions: ɵSelectFromRootState[];
}