UNPKG

svelte-autosize

Version:

Svelte action to automatically adjust textarea height.

10 lines (7 loc) 256 B
import type { Action } from "svelte/action"; import type autosize from "autosize"; declare const autosizeAction: Action<HTMLElement> & { update: typeof autosize.update; destroy: typeof autosize.destroy; }; export default autosizeAction;