@nakedobjects/gemini
Version:
Single Page Application client for a Naked Objects application.
18 lines (17 loc) • 738 B
TypeScript
import { OnInit } from '@angular/core';
import { ContextService } from '@nakedobjects/services';
import { ViewModelFactoryService } from '@nakedobjects/view-models';
import * as i0 from "@angular/core";
export declare class ErrorComponent implements OnInit {
private readonly context;
private readonly viewModelFactory;
constructor(context: ContextService, viewModelFactory: ViewModelFactoryService);
title: string;
message: string;
errorCode: string;
description: string;
stackTrace: string[];
ngOnInit(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ErrorComponent, "nof-error", never, {}, {}, never, never, false, never>;
}