Files
Fluxup_PAP/node_modules/@expo/require-utils/build/codeframe.d.ts
2026-03-10 16:18:05 +00:00

8 lines
312 B
TypeScript

import type { Diagnostic } from 'typescript';
export declare function formatDiagnostic(diagnostic: Diagnostic | undefined): (SyntaxError & {
codeFrame: string;
}) | null;
export declare function annotateError(code: string | null, filename: string, error: Error): (Error & {
codeFrame: string;
}) | null;