smartcert/dist/index.d.ts

22 lines
487 B
TypeScript
Raw Normal View History

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();
}