nakedobjects.spa
Version:
Single Page Application client for a Naked Objects application.
23 lines (22 loc) • 902 B
TypeScript
import { ContextService } from '../context.service';
import { OnInit } from '@angular/core';
import { ConfigService } from '../config.service';
import { AuthService } from '../auth.service';
import { Http } from '@angular/http';
import { UrlManagerService } from '../url-manager.service';
import { Location } from '@angular/common';
export declare class LogoffComponent implements OnInit {
private readonly context;
private readonly authService;
private readonly configService;
private readonly http;
private readonly urlManager;
private readonly location;
constructor(context: ContextService, authService: AuthService, configService: ConfigService, http: Http, urlManager: UrlManagerService, location: Location);
userId: string;
isActive: boolean;
userIsLoggedIn(): boolean;
cancel(): void;
logoff(): void;
ngOnInit(): void;
}