This commit is contained in:
2017-08-28 01:03:59 +02:00
parent 108758ad19
commit d89cc90c4b
18 changed files with 908 additions and 732 deletions

View File

@@ -0,0 +1,13 @@
export interface IDockerRegistryConstructorOptions {
registryUrl: string;
username: string;
password: string;
}
export declare class DockerRegistry {
registryUrl: string;
username: string;
password: string;
constructor(optionsArg: IDockerRegistryConstructorOptions);
static fromEnvString(envString: string): DockerRegistry;
login(): Promise<void>;
}