From 9ba0af7897714965da15d9257f275af2c7d28989 Mon Sep 17 00:00:00 2001 From: Tronin Denis Date: Wed, 10 Aug 2022 11:27:32 +0300 Subject: [PATCH] fix types --- src/default-program.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/default-program.ts b/src/default-program.ts index f8dc3c8..f576480 100644 --- a/src/default-program.ts +++ b/src/default-program.ts @@ -4,7 +4,7 @@ export type ProgramScheme = Array<{ load: number[]; reps: string[]; }>; -export type Program = { weight: number, reps: string }; +export type Program = { weight: number; reps: string }; export type ProgramSchedule = Program[][]; export function defaultProgram(maxWeight: number, programScheme: ProgramScheme): ProgramSchedule {