File tree 1 file changed +3
-3
lines changed
packages/discord.js/typings
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -494,7 +494,7 @@ export abstract class BaseGuild extends Base {
494
494
protected constructor ( client : Client , data : RawBaseGuildData ) ;
495
495
public get createdAt ( ) : Date ;
496
496
public get createdTimestamp ( ) : number ;
497
- public features : GuildFeature [ ] ;
497
+ public features : `${ GuildFeature } ` [ ] ;
498
498
public icon : string | null ;
499
499
public id : Snowflake ;
500
500
public name : string ;
@@ -1335,7 +1335,7 @@ export class GuildPreview extends Base {
1335
1335
public discoverySplash : string | null ;
1336
1336
public emojis : Collection < Snowflake , GuildPreviewEmoji > ;
1337
1337
public stickers : Collection < Snowflake , Sticker > ;
1338
- public features : GuildFeature [ ] ;
1338
+ public features : `${ GuildFeature } ` [ ] ;
1339
1339
public icon : string | null ;
1340
1340
public id : Snowflake ;
1341
1341
public name : string ;
@@ -4747,7 +4747,7 @@ export interface GuildEditData {
4747
4747
preferredLocale ?: Locale | null ;
4748
4748
premiumProgressBarEnabled ?: boolean ;
4749
4749
description ?: string | null ;
4750
- features ?: GuildFeature [ ] ;
4750
+ features ?: `${ GuildFeature } ` [ ] ;
4751
4751
reason ?: string ;
4752
4752
}
4753
4753
You can’t perform that action at this time.
0 commit comments