most terminal converted to ts

This commit is contained in:
Olivier Gagnon
2021-09-15 19:50:44 -04:00
parent 8097364242
commit 2922e42055
60 changed files with 2998 additions and 2259 deletions
+1 -1
View File
@@ -5,5 +5,5 @@ import { IMap } from "../types";
export const Programs: IMap<Program> = {};
for (const params of programsMetadata) {
Programs[params.key] = new Program(params.name, params.create);
Programs[params.key] = new Program(params.name, params.create, params.run);
}