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

8 lines
226 B
TypeScript
Raw Permalink Normal View History

2018-09-17 22:32:31 +02:00
import * as plugins from './smartssh.plugins';
import { SshKey } from './smartssh.classes.sshkey';
2016-04-25 04:06:20 +02:00
2018-09-17 22:32:31 +02:00
export let sshKeyArrayFromDir = function(dirArg: string): SshKey[] {
let sshKeyArray = []; // TODO
return sshKeyArray;
};