nakedobjects.spa
Version:
Single Page Application client for a Naked Objects application.
16 lines (15 loc) • 858 B
TypeScript
import { OnInit, ComponentFactoryResolver, ViewContainerRef } from '@angular/core';
import { CustomComponentService } from '../custom-component.service';
import { ContextService } from '../context.service';
import { LoggerService } from '../logger.service';
import { UrlManagerService } from '../url-manager.service';
export declare class DynamicErrorComponent implements OnInit {
private readonly context;
private readonly componentFactoryResolver;
private readonly customComponentService;
private readonly loggerService;
private readonly urlManagerService;
parent: ViewContainerRef;
constructor(context: ContextService, componentFactoryResolver: ComponentFactoryResolver, customComponentService: CustomComponentService, loggerService: LoggerService, urlManagerService: UrlManagerService);
ngOnInit(): void;
}