Prettier 4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/util/interfaces/Event.ts b/src/util/interfaces/Event.ts
index 8fb9b904..1f8df68d 100644
--- a/src/util/interfaces/Event.ts
+++ b/src/util/interfaces/Event.ts
@@ -220,7 +220,7 @@ export interface GuildBanAddEvent extends Event {
data: {
guild_id: string;
user: User;
- delete_message_secs?: number
+ delete_message_secs?: number;
};
}
@@ -566,7 +566,7 @@ export interface GatewaySessionClientInfo {
version: number;
os: string;
client: string;
-};
+}
export interface GatewaySession {
session_id: string;
diff --git a/src/util/util/Timespan.ts b/src/util/util/Timespan.ts
index c07bf52e..323056c4 100644
--- a/src/util/util/Timespan.ts
+++ b/src/util/util/Timespan.ts
@@ -91,7 +91,7 @@ export class TimeSpan {
}
get years() {
- return Math.floor((this.totalMillis / 1000 / 60 / 60 / 24 / 365.25)); // Average days in a year
+ return Math.floor(this.totalMillis / 1000 / 60 / 60 / 24 / 365.25); // Average days in a year
}
toString(includeWeeks = true, includeMillis = true) {
@@ -127,4 +127,4 @@ export class TimeSpan {
get endDate() {
return new Date(this.end);
}
-}
\ No newline at end of file
+}
|