ajsfw
Version:
Ajs Framework
17 lines (16 loc) • 740 B
TypeScript
import { IErrorPageContent } from "./IErrorPageContent";
export declare class ErrorScreen {
protected static _error: IErrorPageContent;
protected static _errorScreen: HTMLElement;
protected static _label: HTMLElement;
protected static _errorLabel: HTMLElement;
protected static _userAction: HTMLElement;
protected static _errorCode: HTMLElement;
protected static _message: HTMLElement;
protected static _stackTrace: HTMLElement;
static setDOMElement(errorScreenElementId: string): void;
static hide(): void;
static show(error: IErrorPageContent): boolean;
protected static _setContent(error: IErrorPageContent, key: string): void;
protected static _checkDOM(): boolean;
}