9 lines
203 B
TypeScript
Raw Normal View History

2019-01-09 00:01:01 +01:00
export type TCertStatus = 'existing' | 'nonexisting' | 'pending' | 'failed';
export interface ICert {
domainName: string;
created: number;
privateKey: string;
publicKey: string;
csr: string;
}