UNPKG

@editorjs/editorjs

Version:

Editor.js — open source block-style WYSIWYG editor with JSON output

24 lines (22 loc) 422 B
/** * Event detail for block relocation */ export interface MoveEventDetail { /** * index the block was moved from */ fromIndex: number; /** * index the block was moved to */ toIndex: number; } /** * Move event for block relocation */ export interface MoveEvent extends CustomEvent { /** * Override detail property of CustomEvent by MoveEvent hook */ readonly detail: MoveEventDetail; }