src/report/render-json.ts (view raw)
1 2 3 4 5
import type { Report } from '../core/types.js'; export function renderJson(rep: Report): string { return JSON.stringify(rep, null, 2); }