harbor-angular
Version:
Harbor shared components based on Clarity and Angular2s
11 lines (10 loc) • 341 B
TypeScript
import { OnInit } from '@angular/core';
import { SystemInfoService } from './providers/system-info.service';
export declare class SystemComponent implements OnInit {
private systemService;
_systemInfo: string;
constructor(systemService: SystemInfoService);
readonly info: string;
ngOnInit(): void;
getInfo(): void;
}