UNPKG

@atlaskit/editor-common

Version:

A package that contains common classes and components for editor and renderer

12 lines (11 loc) 406 B
import type { EditorContainerWidth, NextEditorPlugin, PublicPluginAPI } from '../types'; type WidthPluginType = NextEditorPlugin<'width', { sharedState: EditorContainerWidth | undefined; }>; export type ExtensionsPluginInjectionAPI = PublicPluginAPI<[ WidthPluginType ]> | undefined; export type MacroInteractionDesignFeatureFlags = { showMacroInteractionDesignUpdates?: boolean; }; export {};