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

8 lines
243 B
TypeScript
Raw Normal View History

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