/** * Parse-check a JS string. Does NOT execute the code — only verifies it's * syntactically valid by handing it to the Function constructor. * * We wrap in an `async function` when the source contains `await` to allow * parsing of async function declarations, which are legal here. */ export declare function validateJs(src: string): { ok: boolean; error?: string; }; //# sourceMappingURL=validate-js.d.ts.map