We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b79ac0 commit ec169a0Copy full SHA for ec169a0
front/ui/ui-charts/src/manchette/utils/index.ts
@@ -7,7 +7,7 @@ export const positionMmToKm = (position: number) => Math.round((position / 10000
7
8
export const msToS = (time: number) => time / 1000;
9
10
-export const calcTotalDistance = <T extends { position: number }>(ops: T[]) => {
+export const calcTotalDistance = (ops: { position: number }[]) => {
11
if (ops.length === 0) {
12
return 0;
13
}
0 commit comments