UNPKG

@atlaskit/editor-plugin-layout

Version:

Layout plugin for @atlaskit/editor-core

8 lines (7 loc) 439 B
import type { EditorAnalyticsAPI } from '@atlaskit/editor-common/analytics'; import { SafePlugin } from '@atlaskit/editor-common/safe-plugin'; import type { LayoutPluginOptions } from '../types'; import type { LayoutState } from './types'; export declare const DEFAULT_LAYOUT = "two_equal"; export default _default; declare function _default(options: LayoutPluginOptions, editorAnalyticsAPI?: EditorAnalyticsAPI): SafePlugin<LayoutState>;