fix(User): jsdoc for User#flags (#4094)

This commit is contained in:
Jyguy 2020-04-18 06:15:30 -04:00 committed by GitHub
parent d827544fbd
commit 6fbaf0a036
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -77,6 +77,7 @@ class User extends Base {
/**
* The flags for this user
* @type {?UserFlags}
* @name User#flags
*/
if (typeof data.public_flags !== 'undefined') this.flags = new UserFlags(data.public_flags);