fix(typescript): remove `options.webhookProxy` from `Probot` constructor (#1459)

This commit is contained in:
Gregor Martynus 2021-01-14 15:32:09 -08:00 committed by GitHub
parent dc7dc324c2
commit 01bb6788f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 3 deletions

View File

@ -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);

View File

@ -22,7 +22,6 @@ export interface Options {
logLevel?: "trace" | "debug" | "info" | "warn" | "error" | "fatal";
port?: number;
host?: string;
webhookProxy?: string;
baseUrl?: string;
}
@ -40,7 +39,6 @@ export type State = {
};
port?: number;
host?: string;
webhookProxy?: string;
baseUrl?: string;
};