fix(core): update

This commit is contained in:
2021-05-17 15:46:59 +00:00
parent 6477b8a375
commit 40d12bc91e
10 changed files with 110 additions and 34 deletions

View File

@@ -1,9 +1,9 @@
import { IModuleLicenseResult } from "./interfaces";
import { IModuleLicenseResult } from './interfaces';
export class CheckResult {
passingModules: IModuleLicenseResult[] = [];
failingModules: IModuleLicenseResult[] = [];
public addPassing(moduleResultArg: IModuleLicenseResult) {
this.passingModules.push(moduleResultArg);
}
@@ -11,4 +11,4 @@ export class CheckResult {
public addFailing(moduleResultArg: IModuleLicenseResult) {
this.failingModules.push(moduleResultArg);
}
}
}