implement listContainers and listContainersDetailed

This commit is contained in:
2016-06-16 01:34:23 +02:00
parent 24c32a3008
commit 880655b4e2
3 changed files with 107 additions and 6 deletions

View File

@ -1,6 +1,12 @@
import "typings-global";
export declare class dockersock {
sockPath: string;
constructor(pathArg: string);
constructor(pathArg?: string);
listContainers(): any;
listContainersDetailed(): any;
listContainersRunning(): any;
listContainersStopped(): any;
listImages(): any;
clean(): any;
request(methodArg: string, routeArg: string, dataArg?: {}): any;
}

File diff suppressed because one or more lines are too long