add missing createConfig to @types/dockerode (#35716)

* add missing createConfig

* remove whitespace
This commit is contained in:
Aras Abbasi 2019-05-28 21:16:07 +02:00 committed by Sheetal Nandi
parent e4eadf6935
commit 4176f2fee6

View File

@ -1151,6 +1151,9 @@ declare class Dockerode {
createSecret(options: {}, callback: Callback<any>): void;
createSecret(options: {}): Promise<any>;
createConfig(options: {}, callback: Callback<any>): void;
createConfig(options: {}): Promise<any>;
createPlugin(options: {}, callback: Callback<any>): void;
createPlugin(options: {}): Promise<any>;