Your IP : 216.73.216.40


Current Path : /var/www/html/wetty/src/server/cli/
Upload File :
Current File : /var/www/html/wetty/src/server/cli/options.ts

export interface Options {
  sshhost: string;
  sshport: number;
  sshuser: string;
  sshauth: string;
  sshkey?: string;
  sshpass?: string;
  sslkey?: string;
  sslcert?: string;
  base: string;
  host: string;
  port: number;
  title: string;
  command?: string;
  forcessh?: boolean;
  bypasshelmet?: boolean;
}

export interface CLI extends Options {
  help: boolean;
}