2016-06-18 14:03:46 +00:00
|
|
|
export declare class Cert {
|
|
|
|
cfEmail: string;
|
|
|
|
cfKey: string;
|
|
|
|
sslDir: string;
|
|
|
|
certificatesPresent: any;
|
|
|
|
certificatesValid: any;
|
|
|
|
gitOriginRepo: any;
|
|
|
|
constructor(optionsArg: {
|
|
|
|
cfEmail: string;
|
|
|
|
cfKey: string;
|
|
|
|
sslDir: string;
|
2016-06-21 18:02:57 +00:00
|
|
|
gitOriginRepo?: string;
|
2016-06-18 14:03:46 +00:00
|
|
|
});
|
2016-06-22 11:22:09 +00:00
|
|
|
getDomainCert(domainNameArg: string): any;
|
2016-06-18 14:03:46 +00:00
|
|
|
}
|
|
|
|
export declare class Certificate {
|
2016-06-21 18:02:57 +00:00
|
|
|
domainName: string;
|
|
|
|
creationDate: Date;
|
|
|
|
expiryDate: Date;
|
2016-06-18 14:03:46 +00:00
|
|
|
constructor();
|
|
|
|
}
|