From 495246b5344665a2eba3c263be059d57853578fa Mon Sep 17 00:00:00 2001 From: Paul Miller Date: Thu, 21 Nov 2024 11:22:54 +0000 Subject: [PATCH] Remove unused var --- src/utils.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/utils.ts b/src/utils.ts index d5e4e51..6ec8c94 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -192,7 +192,6 @@ export type Cipher = { encrypt(plaintext: Uint8Array): Uint8Array; decrypt(ciphertext: Uint8Array): Uint8Array; }; -export type OneTimeCipher = Cipher; export type AsyncCipher = { encrypt(plaintext: Uint8Array): Promise;