2016-06-18 16:03:46 +02: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 20:02:57 +02:00
|
|
|
gitOriginRepo?: string;
|
2016-06-18 16:03:46 +02:00
|
|
|
});
|
2016-06-22 13:09:18 +02:00
|
|
|
getDomainCert(domainNameArg: string): any;
|
2016-06-18 16:03:46 +02:00
|
|
|
}
|
|
|
|
export declare class Certificate {
|
2016-06-21 20:02:57 +02:00
|
|
|
domainName: string;
|
|
|
|
creationDate: Date;
|
|
|
|
expiryDate: Date;
|
2016-06-18 16:03:46 +02:00
|
|
|
constructor();
|
|
|
|
}
|