made all classes start with capital letters

This commit is contained in:
2016-05-31 19:16:45 +02:00
parent eb66ed0244
commit cd6bcb974c
26 changed files with 331 additions and 188 deletions

View File

@@ -1,8 +1,8 @@
import "typings-global"
import plugins = require("./smartssh.plugins");
import classes = require("./smartssh.classes");
import * as plugins from "./smartssh.plugins";
import {SshKey} from "./smartssh.classes.sshkey";
export let sshKeyArrayFromDir = function(dirArg:string):classes.sshKey[]{
export let sshKeyArrayFromDir = function(dirArg:string):SshKey[]{
let sshKeyArray = []; //TODO
return sshKeyArray;
}