24 lines
556 B
TypeScript
24 lines
556 B
TypeScript
export declare class Cert {
|
|
private _cfEmail;
|
|
private _cfKey;
|
|
private _sslDir;
|
|
certificatesPresent: Certificate[];
|
|
certificatesValid: Certificate[];
|
|
gitOriginRepo: any;
|
|
constructor(optionsArg: {
|
|
cfEmail: string;
|
|
cfKey: string;
|
|
sslDir: string;
|
|
gitOriginRepo?: string;
|
|
});
|
|
getDomainCert(domainNameArg: string, optionsArg?: {
|
|
force: boolean;
|
|
}): any;
|
|
}
|
|
export declare class Certificate {
|
|
domainName: string;
|
|
creationDate: Date;
|
|
expiryDate: Date;
|
|
constructor();
|
|
}
|