mirror of
https://github.com/danbulant/docker-compose
synced 2026-05-20 21:08:59 +00:00
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:
parent
31a0c23bb5
commit
9053d87550
1 changed files with 1 additions and 1 deletions
2
index.d.ts
vendored
2
index.d.ts
vendored
|
|
@ -63,7 +63,7 @@ interface IDockerComposePushOptions extends IDockerComposeOptions {
|
|||
}
|
||||
|
||||
interface IDockerComposeResult {
|
||||
exitCode: ?number;
|
||||
exitCode?: number;
|
||||
out: string;
|
||||
err: string;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue