UNPKG

@textbus/editor

Version:

Textbus is a rich text editor and framework that is highly customizable and extensible to achieve rich wysiwyg effects.

7 lines (6 loc) 210 B
import { Ref } from '@textbus/core'; export interface DragRect { width: string; height: string; } export declare function useDragResize(ref: Ref<HTMLElement>, callback: (rect: DragRect) => void): void;