Implement the SSL & Domain Features (Domain List, Real-time information for Expiration Date, Issuer, and Days Left.)

This commit is contained in:
Tola Leng
2025-05-11 20:51:38 +08:00
parent 981bc972f0
commit 580dbc424c
10 changed files with 569 additions and 4 deletions
+14
View File
@@ -0,0 +1,14 @@
export interface SSLCertificate {
id: string;
domain: string;
issuer: string;
expiration_date: string;
status: string;
last_notified: string;
warning_threshold: number;
expiry_threshold: number;
notification_channel: string;
created: string;
updated: string;
}