the State class in ngStore is an BehaviorSubject, so we can inject it, and use it's value property to get the latest value.
constructor(private state:State...) {
}
someMethod() {
// WHAT'S MORE: you can use your selector directly on it!
let v = yourSelector(this.state.value);
}