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