fabric8-planner
Version:
A planner front-end for Fabric8.
9 lines (8 loc) • 334 B
TypeScript
import { User } from 'ngx-login-client';
import { Observable } from 'rxjs';
import { HttpClientService } from './../shared/http-module/http.service';
export declare class CollaboratorService {
private httpClienService;
constructor(httpClienService: HttpClientService);
getCollaborators(url: string): Observable<User[]>;
}