mirror of
https://github.com/danbulant/docker-compose
synced 2026-05-24 12:35:32 +00:00
Fix interfaces not being exposed in typings file
This commit is contained in:
parent
e8b5116230
commit
9c3013be4f
1 changed files with 5 additions and 5 deletions
10
src/index.ts
10
src/index.ts
|
|
@ -1,6 +1,6 @@
|
||||||
import childProcess from 'child_process';
|
import childProcess from 'child_process';
|
||||||
|
|
||||||
interface IDockerComposeOptions {
|
export interface IDockerComposeOptions {
|
||||||
cwd?: string;
|
cwd?: string;
|
||||||
config?: string | string[];
|
config?: string | string[];
|
||||||
log?: boolean;
|
log?: boolean;
|
||||||
|
|
@ -9,19 +9,19 @@ interface IDockerComposeOptions {
|
||||||
env?: NodeJS.ProcessEnv;
|
env?: NodeJS.ProcessEnv;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface IDockerComposeLogOptions extends IDockerComposeOptions {
|
export interface IDockerComposeLogOptions extends IDockerComposeOptions {
|
||||||
follow?: boolean;
|
follow?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface IDockerComposeBuildOptions extends IDockerComposeOptions {
|
export interface IDockerComposeBuildOptions extends IDockerComposeOptions {
|
||||||
parallel?: boolean;
|
parallel?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface IDockerComposePushOptions extends IDockerComposeOptions {
|
export interface IDockerComposePushOptions extends IDockerComposeOptions {
|
||||||
ignorePushFailures?: boolean;
|
ignorePushFailures?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface IDockerComposeResult {
|
export interface IDockerComposeResult {
|
||||||
exitCode: number | null;
|
exitCode: number | null;
|
||||||
out: string;
|
out: string;
|
||||||
err: string;
|
err: string;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue