dockerode - add definition for AuthConfig

This commit is contained in:
Kapil Sachdeva 2018-11-06 10:29:16 -06:00
parent 4ca1d661b9
commit 2ecb8765a0

View File

@ -587,6 +587,13 @@ declare namespace Dockerode {
};
}
interface AuthConfig {
username: string;
password: string;
serveraddress: string;
email?: string;
}
interface PortBinding {
HostIp?: string;
HostPort?: string;
@ -601,7 +608,7 @@ declare namespace Dockerode {
MaximumRetryCount?: number;
}
type LoggingDriverType =
type LoggingDriverType =
| "json-file"
| "syslog"
| "journald"