Select<T> - select peace of the state by provided path. Returns new observable. this.store.select(['todos']).T parameter is optional and falls back to any but recommended and specifies type of sub-selected state.
Initialize - initialize store with with new state. Returns observable holding initialized state. this.store.initialize(['todos', 'filter'], {newItem: false, usedItem: true})
Reset - resets selected peace of state to its initial state: this.store.select(['todos']).reset()