UNPKG

@stimulus-library/mixins

Version:

A library of useful controllers for Stimulus

8 lines (7 loc) 271 B
import { Controller } from "@hotwired/stimulus"; export declare function useEventBus(controller: Controller, eventNameOrNames: string | string[], handler: (...args: any[]) => void, opts?: { debounce?: number; }): { setup: () => void; teardown: () => void; };