@bi8/am-uaa
Version:
ng update @angular/cli yarn add @angular/cli
15 lines (9 loc) • 377 B
text/typescript
import {Observable} from 'rxjs';
import 'rxjs/add/operator/map';
export interface Uaa {
}
export abstract class UaaService {
abstract doLogin(username: string, password: string, silent?: boolean): Observable<any>;
abstract doLogout(silent?: boolean): Observable<any>;
abstract getIdentity(refresh?: boolean, silent?: boolean): Observable<any> | any;
}