UNPKG

@stencil/core

Version:

A Compiler for Web Components and Progressive Web Apps

19 lines (18 loc) 421 B
interface AppErrorData { window: Window; buildResults: any; openInEditor?: OpenInEditorCallback; } declare type OpenInEditorCallback = (data: { file: string; line: number; column: number; }) => void; export declare const appError: (data: AppErrorData) => { diagnostics: any[]; status: string; }; export declare const clearAppErrorModal: (data: { window: Window; }) => void; export {};