install and configure eslint, bow before eslint

This commit is contained in:
2023-10-12 17:20:28 +02:00
parent b6bf355750
commit eb78ce7b6f
13 changed files with 1739 additions and 155 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ export default class EorzeaTime {
*/
readonly eorzeaDate: Date;
private constructor(realDate: Date = new Date()) {
public constructor(realDate: Date = new Date()) {
this.realDate = realDate;
this.eorzeaDate = new Date(realDate.getTime() * (3600 / 175));
}