Fix linter

This commit is contained in:
Fang-Pen Lin
2025-11-04 17:40:13 -08:00
parent df175b66de
commit eebf62f30c

View File

@@ -58,7 +58,7 @@ export type TCreateCertificateProfileDTO = {
autoRenew?: boolean;
renewBeforeDays?: number;
};
acmeConfig?: {};
acmeConfig?: unknown;
};
export type TUpdateCertificateProfileDTO = {
@@ -74,7 +74,7 @@ export type TUpdateCertificateProfileDTO = {
autoRenew?: boolean;
renewBeforeDays?: number;
};
acmeConfig?: {};
acmeConfig?: unknown;
};
export type TDeleteCertificateProfileDTO = {