forked from mirrors/probot
fix(typescript): remove `options.webhookProxy` from `Probot` constructor (#1459)
This commit is contained in:
parent
dc7dc324c2
commit
01bb6788f3
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue