smartacme/ts/interfaces/cert.ts
2019-01-09 00:01:01 +01:00

9 lines
203 B
TypeScript

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