loop-modules
Version:
Shared modules for the Loop product suite.
12 lines (11 loc) • 364 B
TypeScript
import { Http } from '@angular/http';
import 'rxjs/add/operator/map';
import 'rxjs/add/operator/catch';
import { Store } from '@ngrx/store';
import { APIDispatcher } from '../utils/index';
export declare class EmployeeService extends APIDispatcher {
http: Http;
store: Store<any>;
constructor(http: Http, store: Store<any>);
subordinates(): any;
}