/// <reference path="../tsd.d.ts" />
/*
interface connetcOption {
	key:string;		//	path of key file
	port:number;	//	number of port
}
interface fleet  {
	new(hostIP:string, option?:connetcOption):fleet;
	listMachines():ChildProcess;
}
declare module "fleet-ssh" {
	let ex:fleet;
	export = ex;
}
*/