@documment/mmp.ui.augur
Version:
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.0.1.
12 lines (11 loc) • 439 B
TypeScript
import { Store } from '@ngrx/store';
import { Observable } from 'rxjs/Observable';
import { GoalStrategy } from '../models/goal-strategy.model';
import { ApplicationDataState } from '../../../app/app-data.state';
export declare class GoalStrategizer {
private store;
constructor(store: Store<ApplicationDataState>);
state(): GoalStrategy;
refresh(goalStrategy: GoalStrategy): void;
watch(): Observable<GoalStrategy>;
}