Remove duplicate DockerVersion interface

This commit is contained in:
Pascal Sthamer 2018-12-11 18:57:07 +01:00 committed by GitHub
parent e1b2162dce
commit 01401844ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -950,35 +950,6 @@ declare namespace Dockerode {
};
Version: string;
}
interface DockerVersion {
ApiVersion: string;
Arch: string;
BuildTime: Date;
Components: Array<{
Details: {
ApiVersion: string;
Arch: string;
BuilTime: Date;
Experimental: string;
GitCommit: string;
GoVersion: string;
KernelVersion: string;
Os: string;
};
Name: string;
Version: string;
}>;
GitCommit: string;
GoVersion: string;
KernelVersion: string;
MinAPIVersion: string;
Os: string;
Platform: {
Name: string;
};
Version: string;
}
}
type Callback<T> = (error?: any, result?: T) => void;