@remotion/renderer
Version:
Render Remotion videos using Node.js or Bun
19 lines (18 loc) • 758 B
TypeScript
/**
* A symbolicateable error is an error that can be symolicated by fetching the original sources. By throwing a symbolicateable error, Remotion CLI will attempt to symplicate it
*/
import type { UnsymbolicatedStackFrame } from '../parse-browser-error-stack';
export declare class SymbolicateableError extends Error {
stackFrame: UnsymbolicatedStackFrame[] | null;
delayRenderCall: UnsymbolicatedStackFrame[] | null;
frame: number | null;
chunk: number | null;
constructor({ message, stack, stackFrame, frame, name, chunk, }: {
message: string;
stack: string | undefined;
frame: number | null;
name: string;
stackFrame: UnsymbolicatedStackFrame[] | null;
chunk: number | null;
});
}