2016-05-31 16:48:46 +00:00
|
|
|
import "typings-global"
|
2016-05-31 17:16:45 +00:00
|
|
|
import * as plugins from "./smartssh.plugins";
|
|
|
|
import {SshKey} from "./smartssh.classes.sshkey";
|
2016-04-25 02:06:20 +00:00
|
|
|
|
2016-05-31 17:16:45 +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;
|
|
|
|
}
|