smartssh/ts/smartssh.classes.helpers.ts

8 lines
267 B
TypeScript
Raw Normal View History

2016-04-25 02:06:20 +00:00
/// <reference path="./typings/main.d.ts" />
import plugins = require("./smartssh.plugins");
import classes = require("./smartssh.classes");
export let sshKeyArrayFromDir = function(dirArg:string):classes.sshKey[]{
let sshKeyArray = [];
return sshKeyArray;
}