Files
tsclass/ts/network/cert.ts

10 lines
162 B
TypeScript
Raw Normal View History

2020-01-19 10:19:38 +00:00
export interface ICert {
id: string;
domainName: string;
created: number;
2020-02-09 16:38:22 +00:00
validUntil: number;
2020-01-19 10:19:38 +00:00
privateKey: string;
publicKey: string;
csr: string;
2020-01-19 10:20:19 +00:00
}