bpms_site/.svn/pristine/7a/7a66b74c33a1ed07d3d600ac9954285a9cc467c2.svn-base
2025-11-02 16:38:49 +03:30

12 lines
441 B
Plaintext

import { SupportedErrorEvent } from '../container/Errors';
import { OriginalStackFrame } from './stack-frame';
import { ComponentStackFrame } from './parse-component-stack';
export type ReadyRuntimeError = {
id: number;
runtime: true;
error: Error;
frames: OriginalStackFrame[];
componentStackFrames?: ComponentStackFrame[];
};
export declare function getErrorByType(ev: SupportedErrorEvent): Promise<ReadyRuntimeError>;