smartssh/ts/smartssh.classes.sshconfig.ts

15 lines
350 B
TypeScript
Raw Normal View History

2016-05-31 17:00:52 +00:00
import "typings-global";
import * as plugins from "./smartssh.plugins";
import * as helpers from "./smartssh.classes.helpers";
2016-06-24 18:58:55 +00:00
import {SshKey} from "./smartssh.classes.sshkey"
export class SshConfig {
2016-06-24 18:58:55 +00:00
sshKeyArray:SshKey[];
constructor(sshKeyArrayArg:SshKey[]){
this.sshKeyArray = sshKeyArrayArg;
}
makeConfig(){
2016-05-31 17:00:52 +00:00
}
}