/** * Specifies whether the start or the end of the cursor is the "anchor", e.g. * the end which does not move when user changes selection. The other * end is free to move, the moving end of the cursor is "focus". By default * "anchor" is usually the start of the cursor. */ export declare enum CursorAnchor { Start = 0, End = 1 } export declare const enum SliceTypeCon { p = 0,//
blockquote = 1,//
(used by Quill)
codeblock = 2,//
'code-block' = 3,// (same as , used by Quill)
code_block = 4,// (same as , used by Prosemirror)
pre = 5,//
ul = 6,//
ol = 7,//
tl = 8,// - [ ] Task list
li = 9,// -
list = 10,// A generic list (used by Quill)
h1 = 11,//
h2 = 12,//
h3 = 13,//
h4 = 14,//
h5 = 15,//
h6 = 16,//
heading = 17,// (same as )
header = 18,// (same as , used by Quill)
title = 19,// (whole document title)
subtitle = 20,// (whole document subtitle)
br = 21,//
hard_break = 22,// Same as
(used by Prosemirror)
nl = 23,// \n
hr = 24,//
horizontal_rule = 25,// Same as
(used by Prosemirror)
page = 26,// Page break
aside = 27,//