feat: delete all notifications

This commit is contained in:
DecDuck
2025-11-22 10:28:21 +11:00
parent 973c3efa18
commit e230f79b54
6 changed files with 76 additions and 33 deletions

View File

@ -46,7 +46,8 @@
</template>
<script setup lang="ts">
import type { SerializeObject } from "nitropack";
import type { NotificationModel } from "~/prisma/client/models";
const props = defineProps<{ notifications: Array<NotificationModel> }>();
const props = defineProps<{ notifications: Array<SerializeObject<NotificationModel>> }>();
</script>