changed type

This commit is contained in:
Mamalizz
2025-02-27 20:47:37 +03:30
parent e7ccb27e40
commit 0bfb3c2697
+1 -7
View File
@@ -6,13 +6,7 @@ import { useToast } from "~/composables/global/useToast";
// types
type Props = {
modelValue: {
id: number;
file_link: string;
date: string;
size: number;
name: string;
}[];
modelValue: ServerFile[];
loading?: boolean;
};