nakedobjects.spa
Version:
Single Page Application client for a Naked Objects application.
15 lines (14 loc) • 535 B
TypeScript
import { OnInit } from '@angular/core';
import { ContextService } from '../context.service';
import { ViewModelFactoryService } from '../view-model-factory.service';
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[] | null;
ngOnInit(): void;
}