Skip to content

Commit

Permalink
fix(typescript): remove options.webhookProxy from Probot construc…
Browse files Browse the repository at this point in the history
…tor (#1459)
  • Loading branch information
gr2m committed Jan 14, 2021
1 parent dc7dc32 commit 01bb678
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/probot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ export class Probot {
privateKey: options.privateKey,
host: options.host,
port: options.port,
webhookProxy: options.webhookProxy,
};

this.auth = auth.bind(null, this.state);
Expand Down
2 changes: 0 additions & 2 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export interface Options {
logLevel?: "trace" | "debug" | "info" | "warn" | "error" | "fatal";
port?: number;
host?: string;
webhookProxy?: string;
baseUrl?: string;
}

Expand All @@ -40,7 +39,6 @@ export type State = {
};
port?: number;
host?: string;
webhookProxy?: string;
baseUrl?: string;
};

Expand Down

0 comments on commit 01bb678

Please sign in to comment.