Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
almostSouji committed May 10, 2021
1 parent 0e9bfff commit 79bff36
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions src/structures/GuildChannel.js
Original file line number Diff line number Diff line change
Expand Up @@ -488,8 +488,10 @@ class GuildChannel extends Channel {
* @param {number} [options.maxAge=86400] How long the invite should last (in seconds, 0 for forever)
* @param {number} [options.maxUses=0] Maximum number of uses
* @param {boolean} [options.unique=false] Create a unique invite, or use an existing one with similar settings
* @param {ApplicationResolvable} [options.targetApplication] The user whose stream to display for this invite, required if `targetType` is 1, the user must be streaming in the channel
* @param {UserResolvable} [options.targetUser] The embedded application to open for this invite, required if `targetType` is 2, the application must have the `EMBEDDED` flag
* @param {ApplicationResolvable} [options.targetApplication] The user whose stream to display for this invite,
* required if `targetType` is 1, the user must be streaming in the channel
* @param {UserResolvable} [options.targetUser] The embedded application to open for this invite,
* required if `targetType` is 2, the application must have the `EMBEDDED` flag
* @param {TargetType} [options.targetType] The type of the target for this voice channel invite
* @param {string} [options.reason] Reason for creating this
* @returns {Promise<Invite>}
Expand Down
2 changes: 1 addition & 1 deletion src/structures/IntegrationApplication.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class IntegrationApplication extends Application {
this.cover = data.cover_image ?? this.cover ?? null;

/**
* The hex-encoded key for verification in interactions and the GameSDK's GetTicket
* The hex-encoded key for verification in interactions and the GameSDK's GetTicket
* @type {?string}
*/
this.verifyKey = data.verify_key ?? this.verifyKey ?? null;
Expand Down

0 comments on commit 79bff36

Please sign in to comment.