/** * Bona Iqiniso v3 backend powered by spring boot. * v3.0.0 * BI v3 REST API * Thaste IT * http://www.thaste.org/ * info@thaste.org * License of API * localhost:8080 */ import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import * as __model from '../model'; export interface UserParams { name?: string; } export declare class TestService { private http; constructor(http: HttpClient); /** * adminAccess * http://localhost:8080/swagger/swagger-ui.html#!/test-controller/adminAccessUsingGET */ admin(): Observable; /** * allAccess * http://localhost:8080/swagger/swagger-ui.html#!/test-controller/allAccessUsingGET */ all(): Observable; /** * moderatorAccess * http://localhost:8080/swagger/swagger-ui.html#!/test-controller/moderatorAccessUsingGET */ mod(): Observable; /** * userAccess * http://localhost:8080/swagger/swagger-ui.html#!/test-controller/userAccessUsingGET */ user(params: UserParams): Observable<__model.Principal>; }