Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
ts-ign0re committed Aug 10, 2022
1 parent 8d44fb6 commit 9ba0af7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/default-program.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 9ba0af7

Please sign in to comment.