사소한 리팩토링

This commit is contained in:
static
2025-01-30 18:46:16 +09:00
parent 23c82fee12
commit 0a5ef2b970
12 changed files with 26 additions and 33 deletions

View File

@@ -1,4 +1,4 @@
export type Ciphertext = {
export interface Ciphertext {
ciphertext: string; // Base64
iv: string; // Base64
};
}