Fix linting

This commit is contained in:
Mathias Wagner
2024-07-21 18:59:44 +02:00
parent e484e376c4
commit 6f16fcdcca
3 changed files with 14 additions and 14 deletions

View File

@ -1,8 +1,8 @@
export enum LicenseStatus {
VALID = 'VALID',
EXPIRED = 'EXPIRED',
INVALID = 'INVALID',
MAX_USES_REACHED = 'MAX_USES_REACHED',
VALID = "VALID",
EXPIRED = "EXPIRED",
INVALID = "INVALID",
MAX_USES_REACHED = "MAX_USES_REACHED",
}
export interface LicenseMeta {

View File

@ -16,6 +16,6 @@ export class LicenseMeta {
}
public getAsBoolean(): boolean {
return this.value.toLowerCase() === 'true';
return this.value.toLowerCase() === "true";
}
}