air-lib
Version:
This is Air's angular component library
14 lines (13 loc) • 533 B
TypeScript
import { OnInit, OnDestroy } from '@angular/core';
import { Router } from '@angular/router';
import { HttpService } from '../../services/http.service';
export declare class BaseDetailsComponent implements OnInit, OnDestroy {
protected router: Router;
protected httpService: HttpService;
private routingEventsSubscription;
constructor(router: Router, httpService: HttpService);
ngOnInit(): void;
ngOnDestroy(): void;
protected getId(): string;
protected Initialize(response: any): void;
}