@atlaskit/editor-plugin-block-controls
Version:
Block controls plugin for @atlaskit/editor-core
12 lines (11 loc) • 417 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import { jsx } from '@emotion/react';
import type { AnchorRectCache } from '../pm-plugins/utils/anchor-utils';
import type { DropTargetProps } from './drop-target';
export declare const InlineDropTarget: ({ api, nextNode, position, anchorRectCache, getPos, }: DropTargetProps & {
anchorRectCache?: AnchorRectCache;
position: 'left' | 'right';
}) => jsx.JSX.Element;