464a480043
Might already fix #13793
8 lines
256 B
TypeScript
8 lines
256 B
TypeScript
import { type ProfilingReport } from '~/testing/profiling/types/ProfilingReportByRun';
|
|
|
|
export const parseProfilingReportString = (
|
|
profilingReportStringifiedJson: string,
|
|
) => {
|
|
return JSON.parse(profilingReportStringifiedJson) as ProfilingReport;
|
|
};
|