UNPKG

@atlaskit/editor-plugin-alignment

Version:

Alignment plugin for @atlaskit/editor-core

10 lines (9 loc) 250 B
export type AlignmentState = 'start' | 'end' | 'center'; export type AlignmentPluginState = { align: AlignmentState; isEnabled?: boolean; }; export declare enum ToolbarType { PRIMARY = "primaryToolbar", FLOATING = "floatingToolbar" }