Files
story-studio/remotion/node_modules/@remotion/studio-shared/dist/get-location-from-build-error.d.ts
2026-02-21 10:33:18 +01:00

8 lines
212 B
TypeScript

export type ErrorLocation = {
fileName: string;
columnNumber: number;
lineNumber: number;
message: string;
};
export declare const getLocationFromBuildError: (err: Error) => ErrorLocation | null;