UNPKG

@stimulus-library/mixins

Version:

A library of useful controllers for Stimulus

6 lines (5 loc) 274 B
import { Controller } from "@hotwired/stimulus"; export declare function useTemporaryContent(controller: Controller, target: HTMLElement, content: string, timeout?: number, teardownCallback?: () => void): { teardown: () => void; update(newContent: string): void; };