fabric8-planner
Version:
A planner front-end for Fabric8.
9 lines (8 loc) • 333 B
TypeScript
import { Observable } from 'rxjs';
import { GroupTypesModel } from '../models/group-types.model';
import { HttpClientService } from '../shared/http-module/http.service';
export declare class GroupTypesService {
private http;
constructor(http: HttpClientService);
getGroupTypes(url: any): Observable<GroupTypesModel[]>;
}