2016-11-23 11:38:38 +00:00
|
|
|
import 'typings-global'
|
|
|
|
import * as plugins from './smartssh.plugins'
|
|
|
|
import {SshKey} from './smartssh.classes.sshkey'
|
2016-04-25 02:06:20 +00:00
|
|
|
|
2016-11-23 11:38:38 +00:00
|
|
|
export let sshKeyArrayFromDir = function(dirArg: string): SshKey[]{
|
|
|
|
let sshKeyArray = [] // TODO
|
|
|
|
return sshKeyArray
|
|
|
|
}
|