Skip to content

Commit

Permalink
add missing extends WebAPICallOptions to some arguments interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
aoberoi committed Apr 11, 2019
1 parent c5f70ff commit 3a32c51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/web-api/src/methods.ts
Expand Up @@ -77,7 +77,7 @@ export interface BotsInfoArguments extends WebAPICallOptions, TokenOverridable
/*
* `channels.*`
*/
export interface ChannelsArchiveArguments extends TokenOverridable {
export interface ChannelsArchiveArguments extends WebAPICallOptions, TokenOverridable {
channel: string;
}

Expand Down Expand Up @@ -491,7 +491,7 @@ export interface MPIMRepliesArguments extends WebAPICallOptions, TokenOverridabl
/*
* `oauth.*`
*/
export interface OAuthAccessArguments {
export interface OAuthAccessArguments extends WebAPICallOptions {
client_id: string;
client_secret: string;
code: string;
Expand Down

0 comments on commit 3a32c51

Please sign in to comment.