smartacme/ts/interfaces/cert.ts
2019-01-16 22:34:38 +01:00

10 lines
217 B
TypeScript

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