* feat(frontend): reorder array items in app editor * feat(frontend): support tab * feat(frontend): swap subgrids accordingly * feat(frontend): fix syncing issues * feat(frontend): fix syncing issues * feat(frontend): Fix reactive statement
11 lines
437 B
TypeScript
11 lines
437 B
TypeScript
/// <reference types="@sveltejs/kit" />
|
|
|
|
declare type Item = import('svelte-dnd-action').Item
|
|
declare type DndEvent<ItemType = Item> = import('svelte-dnd-action').DndEvent<ItemType>
|
|
declare namespace svelte.JSX {
|
|
interface HTMLAttributes<T> {
|
|
onconsider?: (event: CustomEvent<DndEvent<ItemType>> & { target: EventTarget & T }) => void
|
|
onfinalize?: (event: CustomEvent<DndEvent<ItemType>> & { target: EventTarget & T }) => void
|
|
}
|
|
}
|