more structure

This commit is contained in:
2016-06-18 15:59:03 +02:00
parent 04be5f88eb
commit bbee7923e4
5 changed files with 39 additions and 3 deletions

View File

@ -0,0 +1,3 @@
import "typings-global";
export import path = require("path");

0
ts/cert.plugins.ts Normal file
View File

View File

@ -0,0 +1,28 @@
import * as paths from "./cert.paths";
export class Cert {
cfEmail:string;
cfKey:string;
sslDir:string;
certificatesPresent;
certificatesValid;
gitOriginRepo;
constructor(optionsArg:{
cfEmail:string,
cfKey:string,
sslDir:string,
gitOriginRepo:string
}){
this.cfEmail = optionsArg.cfEmail;
this.cfKey = optionsArg.cfKey;
this.sslDir = optionsArg.sslDir;
this.gitOriginRepo = optionsArg.gitOriginRepo;
};
getDomainCert(){};
}
export class Certificate {
constructor(){
};
}