@atlaskit/editor-plugin-paste
Version:
Paste plugin for @atlaskit/editor-core
9 lines (8 loc) • 307 B
TypeScript
import React from 'react';
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
import type { PastePlugin } from '../pastePluginType';
type Props = {
api?: ExtractInjectionAPI<PastePlugin>;
};
export declare const Flag: ({ api }: Props) => React.JSX.Element | undefined;
export {};