web/queue: more uuid refactoring

This commit is contained in:
jj
2025-05-23 17:37:04 +00:00
parent 47683cecec
commit 17bcfa3a03
4 changed files with 13 additions and 12 deletions

View File

@@ -1,9 +1,10 @@
<script lang="ts">
import Skeleton from "$components/misc/Skeleton.svelte";
import type { UUID } from "$lib/types/queue";
type Props = {
percentage?: number;
workerId: string;
workerId: UUID;
completedWorkers: Set<string>;
}