Typescript migration:

* resources/frontendResource.js
* resources/taskResource.js
* resources/versionResource.js

Also some refactoring towards using promises with async / await.
This commit is contained in:
baldo 2020-04-09 20:18:13 +02:00
commit 31ecc0cf4f
10 changed files with 191 additions and 196 deletions

View file

@ -34,7 +34,7 @@ export class Task {
public lastRunStarted: moment.Moment | null,
public lastRunDuration: number | null,
public state: TaskState,
public enabled: true,
public enabled: boolean,
) {}
run(): void {