fabric8-planner
Version:
A planner front-end for Fabric8.
9 lines (8 loc) • 312 B
TypeScript
import { Observable } from 'rxjs';
import { HttpBackendClient } from './../shared/http-module/http.service';
import { InfotipState } from './../states/infotip.state';
export declare class InfotipService {
private http;
constructor(http: HttpBackendClient);
getInfotips(): Observable<InfotipState>;
}