12 lines
422 B
TypeScript
12 lines
422 B
TypeScript
declare const HTMLElement: {
|
|
new (): {};
|
|
};
|
|
export declare class ErrorOverlay extends HTMLElement {
|
|
static getOverlayHTML(): string;
|
|
close(): void;
|
|
static sendErrorToParent(error: Error, title: string, details: string | undefined, componentName: string | undefined): void;
|
|
constructor(error: Error);
|
|
}
|
|
export declare const errorOverlayCode: string;
|
|
export {};
|
|
//# sourceMappingURL=ErrorOverlay.d.ts.map
|