사소한 리팩토링

This commit is contained in:
static
2025-12-31 02:43:07 +09:00
parent 7b666cf692
commit 182ec18a2b
6 changed files with 22 additions and 20 deletions

View File

@@ -8,13 +8,14 @@ import {
deleteFileThumbnailCache,
uploadFile,
} from "$lib/modules/file";
import type { DataKey } from "$lib/modules/filesystem";
import { hmacSecretStore, type MasterKey, type HmacSecret } from "$lib/stores";
import { trpc } from "$trpc/client";
export interface SelectedEntry {
type: "directory" | "file";
id: number;
dataKey: { key: CryptoKey; version: Date } | undefined;
dataKey: DataKey | undefined;
name: string;
}