smartcert/dist/index.d.ts

24 lines
553 B
TypeScript
Raw Normal View History

2016-06-18 14:03:46 +00:00
export declare class Cert {
cfEmail: string;
cfKey: string;
sslDir: string;
2016-06-28 03:53:49 +00:00
certificatesPresent: Certificate[];
certificatesValid: Certificate[];
2016-06-18 14:03:46 +00:00
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-28 03:53:49 +00:00
getDomainCert(domainNameArg: string, optionsArg?: {
force: boolean;
}): 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();
}