smartacme/ts/interfaces/cert.ts

10 lines
217 B
TypeScript
Raw Normal View History

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