Files
twenty/packages/twenty-front/src/testing/profiling/utils/parseProfilingReportString.ts
T
Félix Malfait 464a480043 Continue ESLINT9 Migration (#13795)
Might already fix #13793
2025-08-10 23:25:58 +02:00

8 lines
256 B
TypeScript

import { type ProfilingReport } from '~/testing/profiling/types/ProfilingReportByRun';
export const parseProfilingReportString = (
profilingReportStringifiedJson: string,
) => {
return JSON.parse(profilingReportStringifiedJson) as ProfilingReport;
};