smartssh/ts/smartssh.classes.helpers.ts

8 lines
246 B
TypeScript
Raw Normal View History

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