@atlaskit/editor-plugin-help-dialog
Version:
Help Dialog plugin for @atlaskit/editor-core
15 lines (14 loc) • 727 B
TypeScript
/// <reference types="react" />
import type { WrappedComponentProps } from 'react-intl-next';
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
import type { HelpDialogPlugin } from '../helpDialogPluginType';
export interface HelpDialogProps {
pluginInjectionApi: ExtractInjectionAPI<HelpDialogPlugin> | undefined;
editorView: EditorView;
quickInsertEnabled?: boolean;
}
declare const _default: import("react").FC<import("react-intl-next").WithIntlProps<HelpDialogProps & WrappedComponentProps>> & {
WrappedComponent: import("react").ComponentType<HelpDialogProps & WrappedComponentProps>;
};
export default _default;