/// <reference path="../tsd.d.ts" />
/*
interface Fleetctl_connetcOption {
	tunnel?:string;		//	ssh tunnel
	'ca-file'?:string;
	'cert-file'?:string;
	'key-file'?:string;
	driver?:string;		//	API ot etcd
	endpoint?:string;	//	host address
	binary?:string;		//	the PATH of the binary command of fleetctl
}
interface Fleetctl  {
	new(option?:Fleetctl_connetcOption):Fleetctl;
	list_machines(cb:(err, machines?)=>void):void;
}
declare module "fleetctl" {
	let ex:Fleetctl;
	export = ex;
}
*/