mirror of
https://github.com/gnmyt/LicenseAPI.git
synced 2026-01-13 19:41:46 +00:00
Fix linting
This commit is contained in:
@ -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 {
|
||||
|
||||
@ -16,6 +16,6 @@ export class LicenseMeta {
|
||||
}
|
||||
|
||||
public getAsBoolean(): boolean {
|
||||
return this.value.toLowerCase() === 'true';
|
||||
return this.value.toLowerCase() === "true";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user