Merge pull request #79 from lukeautry/patch-1

Fix TypeScript typings for DockerComposeResult
This commit is contained in:
Alexander Zeitler 2019-06-04 10:19:12 +02:00 committed by GitHub
commit f77821303d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
index.d.ts vendored
View file

@ -63,7 +63,7 @@ interface IDockerComposePushOptions extends IDockerComposeOptions {
}
interface IDockerComposeResult {
exitCode: ?number;
exitCode?: number;
out: string;
err: string;
}