| 9 | declare type DndEvent<ItemType = Item> = import("svelte-dnd-action").DndEvent<ItemType>; |
| 10 | declare namespace svelteHTML { |
| 11 | interface HTMLAttributes<T> { |
| 12 | "on:consider"?: (event: CustomEvent<DndEvent<ItemType>> & { target: EventTarget & T }) => void; |
| 13 | "on:finalize"?: (event: CustomEvent<DndEvent<ItemType>> & { target: EventTarget & T }) => void; |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | interface GoalSummary { |
nothing calls this directly
no outgoing calls
no test coverage detected