format & lint

This commit is contained in:
Snarling
2022-09-13 12:37:24 -04:00
parent c9ee938bc6
commit 91a69d7d8f
39 changed files with 59 additions and 154 deletions
+1 -5
View File
@@ -12,11 +12,7 @@ export class Program {
create: IProgramCreate | null;
run: (args: string[], server: BaseServer) => void;
constructor(
name: string,
create: IProgramCreate | null,
run: (args: string[], server: BaseServer) => void,
) {
constructor(name: string, create: IProgramCreate | null, run: (args: string[], server: BaseServer) => void) {
this.name = name;
this.create = create;
this.run = run;