Files
smartssh/ts/smartssh.classes.helpers.ts

9 lines
246 B
TypeScript
Raw Normal View History

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