smartacme/ts/interfaces/cert.ts
2019-02-06 09:47:33 +01:00

11 lines
218 B
TypeScript

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