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