@atlaskit/editor-plugin-block-type
Version:
BlockType plugin for @atlaskit/editor-core
13 lines (12 loc) • 423 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import React from 'react';
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
import type { BlockTypePlugin } from '../blockTypePluginType';
type QuoteBlockMenuItemProps = {
api: ExtractInjectionAPI<BlockTypePlugin> | undefined;
};
export declare const createQuoteBlockMenuItem: ({ api }: QuoteBlockMenuItemProps) => () => React.JSX.Element;
export {};