smartssh/ts/smartssh.classes.helpers.ts
2018-09-17 22:32:31 +02:00

8 lines
226 B
TypeScript

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