UNPKG

@atlaskit/editor-common

Version:

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

5 lines (4 loc) 244 B
export type HeadingLevels = 1 | 2 | 3 | 4 | 5 | 6; export type NormalTextLevel = 0; export type HeadingLevelsAndNormalText = HeadingLevels | NormalTextLevel; export type AllowedBlockTypes = 'heading' | 'blockquote' | 'hardBreak' | 'codeBlock';