more structure
This commit is contained in:
@ -0,0 +1,3 @@
|
||||
import "typings-global";
|
||||
export import path = require("path");
|
||||
|
||||
|
0
ts/cert.plugins.ts
Normal file
0
ts/cert.plugins.ts
Normal file
28
ts/index.ts
28
ts/index.ts
@ -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(){
|
||||
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user