Skip to content

Commit e593c5b

Browse files
committed
fix: remove unnecessary field
1 parent ef7a32d commit e593c5b

1 file changed

Lines changed: 3 additions & 7 deletions

File tree

src/payloads/Guild.ts

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,19 @@ export interface APICountingGuild<IDType = string> {
66
*/
77
_id: IDType;
88
/**
9-
* The Discord Snowflake ID of the guild
9+
* The Discord Snowflake of the guild
1010
*/
1111
guildId: string;
1212
/**
13-
* The counting channel of the guild
13+
* The Counting Channels for the guild
1414
*/
1515
channels: string[];
1616
/**
1717
* The ISO-639-1 language code for the guild
1818
*/
1919
language: LanguageCode;
2020
/**
21-
* The premium type of the guild
21+
* Whether the guild is premium or not
2222
*/
2323
premium: boolean;
24-
/**
25-
* Initialized when the guild was created but will be updated at every count.
26-
*/
27-
lastCountAt: Date;
2824
}

0 commit comments

Comments
 (0)