You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
397 B
22 lines
397 B
export interface Options {
|
|
sshhost: string;
|
|
sshport: number;
|
|
sshuser: string;
|
|
sshauth: string;
|
|
sshkey?: string;
|
|
sshpass?: string;
|
|
knownhosts: 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;
|
|
}
|
|
|