smartssh/ts/smartssh.classes.helpers.ts
2016-06-01 04:18:31 +02:00

8 lines
246 B
TypeScript

import "typings-global"
import * as plugins from "./smartssh.plugins";
import {SshKey} from "./smartssh.classes.sshkey";
export let sshKeyArrayFromDir = function(dirArg:string):SshKey[]{
let sshKeyArray = []; //TODO
return sshKeyArray;
}