smartacme/ts/interfaces/cert.ts

9 lines
203 B
TypeScript
Raw Normal View History

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