2019-01-08 23:01:01 +00:00
|
|
|
export type TCertStatus = 'existing' | 'nonexisting' | 'pending' | 'failed';
|
|
|
|
|
2020-02-10 20:13:06 +00:00
|
|
|
export interface IOldCert {
|
2019-01-16 21:34:38 +00:00
|
|
|
id: string;
|
2019-01-08 23:01:01 +00:00
|
|
|
domainName: string;
|
|
|
|
created: number;
|
|
|
|
privateKey: string;
|
|
|
|
publicKey: string;
|
|
|
|
csr: string;
|
2019-02-06 08:47:33 +00:00
|
|
|
}
|