PathSelector: (string | number)[]

An array of strings or numbers used to select a path in a state object.

Example

// Select the 'name' property from an object in the store using a PathSelector array.
@Select(['foo', 'name']) readonly name$: Observable<string>;

Generated using TypeDoc