refactor(extensions): make extension confirmation callbacks return void

This commit is contained in:
ByteAtATime 2025-07-11 11:04:15 -07:00
parent cfb5555edf
commit 44d3becc86
No known key found for this signature in database

View file

@ -12,8 +12,8 @@
type Props = {
violations: Violation[];
open: boolean;
onconfirm: () => {};
oncancel: () => {};
onconfirm: () => void;
oncancel: () => void;
};
let { violations, open = $bindable(), onconfirm, oncancel }: Props = $props();