smartssh/ts/smartssh.classes.helpers.ts

8 lines
233 B
TypeScript
Raw Permalink Normal View History

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