Files
Stackq/node_modules/svelte-toolbelt/dist/utils/compose-handlers.d.ts
T
eewing cf73cd3b4c INIT
2026-02-17 14:10:16 -06:00

9 lines
524 B
TypeScript

import type { EventCallback } from "./events.js";
import type { ReadableBox } from "../box/box-extras.svelte.js";
/**
* Composes event handlers into a single function that can be called with an event.
* If the previous handler cancels the event using `event.preventDefault()`, the handlers
* that follow will not be called.
*/
export declare function composeHandlers<E extends Event = Event, T extends Element = Element>(...handlers: Array<EventCallback<E> | ReadableBox<EventCallback<E>> | undefined>): (e: E) => void;