editor.js/types/events/block/BlockMoved.ts
ferntheplant 494d6e4b9b
fix: use type imports for block events (#2491)
* fix: use type imports for block events

* add changelog entry

---------

Co-authored-by: Peter Savchenko <specc.dev@gmail.com>
2023-12-05 19:26:10 +03:00

27 lines
547 B
TypeScript

import type { BlockMutationEventDetail } from './Base';
/**
* Type name of CustomEvent related to block moved event
*/
export const BlockMovedMutationType = 'block-moved';
/**
* Information about moved block
*/
interface BlockMovedEventDetail extends BlockMutationEventDetail {
/**
* Previous block position
*/
fromIndex: number;
/**
* New block position
*/
toIndex: number;
}
/**
* Event will be fired when some block is moved to another position
*/
export type BlockMovedEvent = CustomEvent<BlockMovedEventDetail>;