| Current Path : /var/www/homesaver/www/bitrix/js/ui/text-editor/src/ |
| Current File : /var/www/homesaver/www/bitrix/js/ui/text-editor/src/constants.js |
import type { NewLineModeType } from './types/new-line-mode-type';
// Node flags
export const UNFORMATTED = 1;
export const NewLineMode: Record<string, NewLineModeType> = {
LINE_BREAK: 'line-break',
PARAGRAPH: 'paragraph',
MIXED: 'mixed',
};