mirror of
https://github.com/danbulant/docker-compose
synced 2026-06-05 15:51:37 +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 {
|
interface IDockerComposeResult {
|
||||||
exitCode: ?number;
|
exitCode?: number;
|
||||||
out: string;
|
out: string;
|
||||||
err: string;
|
err: string;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue