2016-05-31 18:48:46 +02:00
|
|
|
import "typings-global"
|
2016-05-31 19:16:45 +02:00
|
|
|
import * as plugins from "./smartssh.plugins";
|
|
|
|
import {SshKey} from "./smartssh.classes.sshkey";
|
2016-04-25 04:06:20 +02:00
|
|
|
|
2016-05-31 19:16:45 +02:00
|
|
|
export let sshKeyArrayFromDir = function(dirArg:string):SshKey[]{
|
2016-04-26 05:04:36 +02:00
|
|
|
let sshKeyArray = []; //TODO
|
2016-04-25 04:06:20 +02:00
|
|
|
return sshKeyArray;
|
|
|
|
}
|