feat(VoiceRegion): remove the unsent vip field (#6759)

This commit is contained in:
J-Human
2022-01-09 18:48:15 +08:00
committed by GitHub
parent 68b9564f18
commit caaef53dd9
2 changed files with 0 additions and 7 deletions

View File

@@ -19,12 +19,6 @@ class VoiceRegion {
*/
this.name = data.name;
/**
* Whether the region is VIP-only
* @type {boolean}
*/
this.vip = data.vip;
/**
* Whether the region is deprecated
* @type {boolean}

View File

@@ -2459,7 +2459,6 @@ export class VoiceRegion {
public id: string;
public name: string;
public optimal: boolean;
public vip: boolean;
public toJSON(): unknown;
}