Fix TypeScript typings for DockerComposeResult

`fieldName: ?number` is not a valid type expression. I assume this was a mistake, but in any case it will fail in TypeScript projects with the error `JSDoc types can only be used inside documentation comments.`.
This commit is contained in:
Luke 2019-06-03 22:57:20 -04:00 committed by GitHub
parent 31a0c23bb5
commit 9053d87550
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;
}