docker/ts/dockersock.class.dockersock.ts

12 lines
224 B
TypeScript
Raw Normal View History

import "typings-global"
import * as plugins from "./dockersock.plugins";
export class dockersock {
sockPath:string;
constructor(pathArg:string){
this.sockPath = pathArg;
}
request(){
}
}