made all classes start with capital letters
This commit is contained in:
@ -1,13 +1,14 @@
|
||||
import "typings-global";
|
||||
import * as plugins from "./smartssh.plugins";
|
||||
import * as helpers from "./smartssh.classes.helpers";
|
||||
import {sshKey} from "./smartssh.classes.sshkey";
|
||||
export class sshDir { // sshDir class -> NOT EXPORTED, ONLY FOR INTERNAL USE
|
||||
import {SshKey} from "./smartssh.classes.sshkey";
|
||||
import {SshConfig} from "./smartssh.classes.sshconfig";
|
||||
export class SshDir { // sshDir class -> NOT EXPORTED, ONLY FOR INTERNAL USE
|
||||
path:string;
|
||||
constructor(sshDirPathArg:string){
|
||||
this.path = sshDirPathArg;
|
||||
}
|
||||
sync(sshConfigArg:sshConfig,sshKeysArg:sshKey[]){
|
||||
sync(sshConfigArg:SshConfig,sshKeysArg:SshKey[]){
|
||||
|
||||
};
|
||||
getKeys(){
|
||||
|
Reference in New Issue
Block a user