From 54d739214ab2817359f0456e364520b12ca91251 Mon Sep 17 00:00:00 2001 From: Yigit Colakoglu Date: Thu, 31 Jul 2025 07:16:03 +0200 Subject: [PATCH] Make EncryptionOptions extend to EncryptionConfig --- quartz/util/encryption.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/quartz/util/encryption.ts b/quartz/util/encryption.ts index 5bc7c3944..feef85f29 100644 --- a/quartz/util/encryption.ts +++ b/quartz/util/encryption.ts @@ -28,11 +28,8 @@ export interface DirectoryConfig extends EncryptionConfig { password: string } -export interface EncryptionOptions { - algorithm: string +export interface EncryptionOptions extends EncryptionConfig { encryptedFolders: { [folderPath: string]: string | DirectoryConfig } - message: string - ttl: number } // =============================================================================