smartssh/ts/smartssh.classes.helpers.ts

12 lines
322 B
TypeScript
Raw Normal View History

import "typings-global"
import * as plugins from "./smartssh.plugins";
import {SshKey} from "./smartssh.classes.sshkey";
2016-04-25 02:06:20 +00:00
export let sshKeyArrayFromDir = function(dirArg:string):SshKey[]{
2016-04-26 03:04:36 +00:00
let sshKeyArray = []; //TODO
2016-04-25 02:06:20 +00:00
return sshKeyArray;
2016-04-26 03:04:36 +00:00
}
export let getKeyIndex = function(hostArg:string){
return 0; //TODO
2016-04-25 02:06:20 +00:00
}