mirror of
https://github.com/ByteAtATime/raycast-linux.git
synced 2025-08-31 11:17:27 +00:00
refactor(extensions): make extension confirmation callbacks return void
This commit is contained in:
parent
cfb5555edf
commit
44d3becc86
1 changed files with 2 additions and 2 deletions
|
@ -12,8 +12,8 @@
|
|||
type Props = {
|
||||
violations: Violation[];
|
||||
open: boolean;
|
||||
onconfirm: () => {};
|
||||
oncancel: () => {};
|
||||
onconfirm: () => void;
|
||||
oncancel: () => void;
|
||||
};
|
||||
|
||||
let { violations, open = $bindable(), onconfirm, oncancel }: Props = $props();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue