smartacme/ts/interfaces/cert.ts

11 lines
221 B
TypeScript

export type TCertStatus = 'existing' | 'nonexisting' | 'pending' | 'failed';
export interface IOldCert {
id: string;
domainName: string;
created: number;
privateKey: string;
publicKey: string;
csr: string;
}