From 76b2761d62f459442989c6a55518408b68f0ad34 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 21 Aug 2023 19:57:59 +0000 Subject: chore(deps): switched to fucking typescript v5 (#501) * chore(deps): update dependency typescript to v5 * chore(deps): switched to fucking typescript v5 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Corentin Thomasset --- src/tools/benchmark-builder/benchmark-builder.models.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tools/benchmark-builder/benchmark-builder.models.ts') diff --git a/src/tools/benchmark-builder/benchmark-builder.models.ts b/src/tools/benchmark-builder/benchmark-builder.models.ts index 10ae8a7..0bf3456 100644 --- a/src/tools/benchmark-builder/benchmark-builder.models.ts +++ b/src/tools/benchmark-builder/benchmark-builder.models.ts @@ -18,7 +18,7 @@ function computeVariance({ data }: { data: number[] }) { return computeAverage({ data: squaredDiffs }); } -function arrayToMarkdownTable({ data, headerMap = {} }: { data: unknown[]; headerMap?: Record }) { +function arrayToMarkdownTable({ data, headerMap = {} }: { data: Record[]; headerMap?: Record }) { if (!Array.isArray(data) || data.length === 0) { return ''; } -- cgit v1.2.3