9 lines
203 B
TypeScript
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;
|
||
|
}
|