@ckeditor/ckeditor5-engine 48.2.0 → 48.3.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/controller/datacontroller.d.ts +329 -328
- package/dist/controller/editingcontroller.d.ts +95 -94
- package/dist/conversion/comparemarkers.d.ts +45 -45
- package/dist/conversion/conversion.d.ts +474 -474
- package/dist/conversion/conversionhelpers.d.ts +21 -21
- package/dist/conversion/downcastdispatcher.d.ts +539 -538
- package/dist/conversion/downcasthelpers.d.ts +1129 -1129
- package/dist/conversion/mapper.d.ts +692 -697
- package/dist/conversion/modelconsumable.d.ts +196 -196
- package/dist/conversion/upcastdispatcher.d.ts +483 -482
- package/dist/conversion/upcasthelpers.d.ts +491 -491
- package/dist/conversion/viewconsumable.d.ts +330 -330
- package/dist/dataprocessor/basichtmlwriter.d.ts +15 -15
- package/dist/dataprocessor/dataprocessor.d.ts +57 -57
- package/dist/dataprocessor/htmldataprocessor.d.ts +72 -72
- package/dist/dataprocessor/htmlwriter.d.ts +11 -11
- package/dist/dataprocessor/xmldataprocessor.d.ts +86 -86
- package/dist/dev-utils/model.d.ts +128 -123
- package/dist/dev-utils/operationreplayer.d.ts +49 -49
- package/dist/dev-utils/utils.d.ts +33 -33
- package/dist/dev-utils/view.d.ts +314 -309
- package/dist/engineconfig.d.ts +39 -39
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +150 -150
- package/dist/index.js +34026 -40107
- package/dist/index.js.map +1 -1
- package/dist/legacyerrors.d.ts +0 -4
- package/dist/model/batch.d.ts +86 -86
- package/dist/model/differ.d.ts +504 -504
- package/dist/model/document.d.ts +265 -268
- package/dist/model/documentfragment.d.ts +214 -214
- package/dist/model/documentselection.d.ts +406 -410
- package/dist/model/element.d.ts +182 -182
- package/dist/model/history.d.ts +109 -109
- package/dist/model/item.d.ts +9 -9
- package/dist/model/liveposition.d.ts +70 -69
- package/dist/model/liverange.d.ts +93 -92
- package/dist/model/markercollection.d.ts +317 -324
- package/dist/model/model.d.ts +889 -909
- package/dist/model/node.d.ts +254 -254
- package/dist/model/nodelist.d.ts +110 -110
- package/dist/model/operation/attributeoperation.d.ts +98 -98
- package/dist/model/operation/detachoperation.d.ts +57 -57
- package/dist/model/operation/insertoperation.d.ts +85 -85
- package/dist/model/operation/markeroperation.d.ts +87 -87
- package/dist/model/operation/mergeoperation.d.ts +95 -95
- package/dist/model/operation/moveoperation.d.ts +97 -97
- package/dist/model/operation/nooperation.d.ts +33 -33
- package/dist/model/operation/operation.d.ts +94 -94
- package/dist/model/operation/operationfactory.d.ts +14 -14
- package/dist/model/operation/renameoperation.d.ts +78 -78
- package/dist/model/operation/rootattributeoperation.d.ts +93 -93
- package/dist/model/operation/rootoperation.d.ts +71 -71
- package/dist/model/operation/splitoperation.d.ts +104 -104
- package/dist/model/operation/transform.d.ts +91 -91
- package/dist/model/operation/utils.d.ts +58 -58
- package/dist/model/position.d.ts +535 -535
- package/dist/model/range.d.ts +458 -453
- package/dist/model/rootelement.d.ts +55 -55
- package/dist/model/schema.d.ts +1325 -1327
- package/dist/model/selection.d.ts +452 -471
- package/dist/model/text.d.ts +62 -62
- package/dist/model/textproxy.d.ts +140 -140
- package/dist/model/treewalker.d.ts +190 -190
- package/dist/model/typecheckable.d.ts +281 -281
- package/dist/model/utils/autoparagraphing.d.ts +29 -29
- package/dist/model/utils/deletecontent.d.ts +68 -68
- package/dist/model/utils/getselectedcontent.d.ts +27 -27
- package/dist/model/utils/insertcontent.d.ts +42 -42
- package/dist/model/utils/insertobject.d.ts +41 -41
- package/dist/model/utils/modifyselection.d.ts +44 -44
- package/dist/model/utils/selection-post-fixer.d.ts +71 -71
- package/dist/model/writer.d.ts +854 -854
- package/dist/view/attributeelement.d.ts +123 -123
- package/dist/view/containerelement.d.ts +49 -49
- package/dist/view/datatransfer.d.ts +70 -70
- package/dist/view/document.d.ts +175 -177
- package/dist/view/documentfragment.d.ts +158 -157
- package/dist/view/documentselection.d.ts +308 -307
- package/dist/view/domconverter.d.ts +612 -657
- package/dist/view/downcastwriter.d.ts +1006 -1006
- package/dist/view/editableelement.d.ts +64 -63
- package/dist/view/element.d.ts +754 -754
- package/dist/view/elementdefinition.d.ts +79 -79
- package/dist/view/emptyelement.d.ts +42 -42
- package/dist/view/filler.d.ts +75 -75
- package/dist/view/item.d.ts +9 -9
- package/dist/view/matcher.d.ts +412 -487
- package/dist/view/node.d.ts +164 -163
- package/dist/view/observer/arrowkeysobserver.d.ts +37 -37
- package/dist/view/observer/bubblingemittermixin.d.ts +163 -153
- package/dist/view/observer/bubblingeventinfo.d.ts +45 -42
- package/dist/view/observer/clickobserver.d.ts +36 -36
- package/dist/view/observer/compositionobserver.d.ts +67 -67
- package/dist/view/observer/domeventdata.d.ts +46 -46
- package/dist/view/observer/domeventobserver.d.ts +77 -74
- package/dist/view/observer/fakeselectionobserver.d.ts +42 -42
- package/dist/view/observer/focusobserver.d.ts +84 -84
- package/dist/view/observer/inputobserver.d.ts +76 -76
- package/dist/view/observer/keyobserver.d.ts +53 -53
- package/dist/view/observer/mouseobserver.d.ts +73 -73
- package/dist/view/observer/mutationobserver.d.ts +101 -101
- package/dist/view/observer/observer.d.ts +84 -83
- package/dist/view/observer/pointerobserver.d.ts +63 -63
- package/dist/view/observer/selectionobserver.d.ts +136 -136
- package/dist/view/observer/tabobserver.d.ts +38 -38
- package/dist/view/observer/touchobserver.d.ts +60 -60
- package/dist/view/placeholder.d.ts +80 -80
- package/dist/view/position.d.ts +187 -187
- package/dist/view/range.d.ts +282 -282
- package/dist/view/rawelement.d.ts +72 -72
- package/dist/view/renderer.d.ts +270 -272
- package/dist/view/rooteditableelement.d.ts +43 -43
- package/dist/view/selection.d.ts +356 -369
- package/dist/view/styles/background.d.ts +15 -15
- package/dist/view/styles/border.d.ts +27 -27
- package/dist/view/styles/margin.d.ts +12 -12
- package/dist/view/styles/padding.d.ts +12 -12
- package/dist/view/styles/utils.d.ts +72 -72
- package/dist/view/stylesmap.d.ts +715 -715
- package/dist/view/text.d.ts +75 -75
- package/dist/view/textproxy.d.ts +92 -92
- package/dist/view/tokenlist.d.ts +104 -104
- package/dist/view/treewalker.d.ts +201 -201
- package/dist/view/typecheckable.d.ts +445 -445
- package/dist/view/uielement.d.ts +93 -93
- package/dist/view/upcastwriter.d.ts +412 -412
- package/dist/view/view.d.ts +466 -469
- package/package.json +2 -2
|
@@ -1,202 +1,202 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import { ModelPosition } from
|
|
6
|
-
import { type ModelItem } from
|
|
7
|
-
import { type ModelRange } from
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
|
+
*/
|
|
5
|
+
import { ModelPosition } from "./position.js";
|
|
6
|
+
import { type ModelItem } from "./item.js";
|
|
7
|
+
import { type ModelRange } from "./range.js";
|
|
8
8
|
/**
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
* Position iterator class. It allows to iterate forward and backward over the document.
|
|
10
|
+
*/
|
|
11
11
|
export declare class ModelTreeWalker implements Iterable<ModelTreeWalkerValue> {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
12
|
+
/**
|
|
13
|
+
* Walking direction. Defaults `'forward'`.
|
|
14
|
+
*/
|
|
15
|
+
readonly direction: ModelTreeWalkerDirection;
|
|
16
|
+
/**
|
|
17
|
+
* Iterator boundaries.
|
|
18
|
+
*
|
|
19
|
+
* When the iterator is walking `'forward'` on the end of boundary or is walking `'backward'`
|
|
20
|
+
* on the start of boundary, then `{ done: true }` is returned.
|
|
21
|
+
*
|
|
22
|
+
* If boundaries are not defined they are set before first and after last child of the root node.
|
|
23
|
+
*/
|
|
24
|
+
readonly boundaries: ModelRange | null;
|
|
25
|
+
/**
|
|
26
|
+
* Flag indicating whether all consecutive characters with the same attributes should be
|
|
27
|
+
* returned as one {@link module:engine/model/textproxy~ModelTextProxy} (`true`) or one by one (`false`).
|
|
28
|
+
*/
|
|
29
|
+
readonly singleCharacters: boolean;
|
|
30
|
+
/**
|
|
31
|
+
* Flag indicating whether iterator should enter elements or not. If the iterator is shallow child nodes of any
|
|
32
|
+
* iterated node will not be returned along with `elementEnd` tag.
|
|
33
|
+
*/
|
|
34
|
+
readonly shallow: boolean;
|
|
35
|
+
/**
|
|
36
|
+
* Flag indicating whether iterator should ignore `elementEnd` tags. If the option is true walker will not
|
|
37
|
+
* return a parent node of the start position. If this option is `true` each {@link module:engine/model/element~ModelElement} will
|
|
38
|
+
* be returned once, while if the option is `false` they might be returned twice:
|
|
39
|
+
* for `'elementStart'` and `'elementEnd'`.
|
|
40
|
+
*/
|
|
41
|
+
readonly ignoreElementEnd: boolean;
|
|
42
|
+
/**
|
|
43
|
+
* Iterator position. This is always static position, even if the initial position was a
|
|
44
|
+
* {@link module:engine/model/liveposition~ModelLivePosition live position}. If start position is not defined then position depends
|
|
45
|
+
* on {@link #direction}. If direction is `'forward'` position starts form the beginning, when direction
|
|
46
|
+
* is `'backward'` position starts from the end.
|
|
47
|
+
*/
|
|
48
|
+
private _position;
|
|
49
|
+
/**
|
|
50
|
+
* Start boundary cached for optimization purposes.
|
|
51
|
+
*/
|
|
52
|
+
private _boundaryStartParent;
|
|
53
|
+
/**
|
|
54
|
+
* End boundary cached for optimization purposes.
|
|
55
|
+
*/
|
|
56
|
+
private _boundaryEndParent;
|
|
57
|
+
/**
|
|
58
|
+
* Parent of the most recently visited node. Cached for optimization purposes.
|
|
59
|
+
*/
|
|
60
|
+
private _visitedParent;
|
|
61
|
+
/**
|
|
62
|
+
* Creates a range iterator. All parameters are optional, but you have to specify either `boundaries` or `startPosition`.
|
|
63
|
+
*
|
|
64
|
+
* @param options Object with configuration.
|
|
65
|
+
*/
|
|
66
|
+
constructor(options: ModelTreeWalkerOptions);
|
|
67
|
+
/**
|
|
68
|
+
* Iterable interface.
|
|
69
|
+
*
|
|
70
|
+
* @returns {Iterable.<module:engine/model/treewalker~ModelTreeWalkerValue>}
|
|
71
|
+
*/
|
|
72
|
+
[Symbol.iterator](): IterableIterator<ModelTreeWalkerValue>;
|
|
73
|
+
/**
|
|
74
|
+
* Iterator position. This is always static position, even if the initial position was a
|
|
75
|
+
* {@link module:engine/model/liveposition~ModelLivePosition live position}. If start position is not defined then position depends
|
|
76
|
+
* on {@link #direction}. If direction is `'forward'` position starts form the beginning, when direction
|
|
77
|
+
* is `'backward'` position starts from the end.
|
|
78
|
+
*/
|
|
79
|
+
get position(): ModelPosition;
|
|
80
|
+
/**
|
|
81
|
+
* Moves {@link #position} in the {@link #direction} skipping values as long as the callback function returns `true`.
|
|
82
|
+
*
|
|
83
|
+
* For example:
|
|
84
|
+
*
|
|
85
|
+
* ```ts
|
|
86
|
+
* walker.skip( value => value.type == 'text' ); // <paragraph>[]foo</paragraph> -> <paragraph>foo[]</paragraph>
|
|
87
|
+
* walker.skip( () => true ); // Move the position to the end: <paragraph>[]foo</paragraph> -> <paragraph>foo</paragraph>[]
|
|
88
|
+
* walker.skip( () => false ); // Do not move the position.
|
|
89
|
+
* ```
|
|
90
|
+
*
|
|
91
|
+
* @param skip Callback function. Gets {@link module:engine/model/treewalker~ModelTreeWalkerValue} and should
|
|
92
|
+
* return `true` if the value should be skipped or `false` if not.
|
|
93
|
+
*/
|
|
94
|
+
skip(skip: (value: ModelTreeWalkerValue) => boolean): void;
|
|
95
|
+
/**
|
|
96
|
+
* Moves tree walker {@link #position} to provided `position`. Tree walker will
|
|
97
|
+
* continue traversing from that position.
|
|
98
|
+
*
|
|
99
|
+
* Note: in contrary to {@link ~ModelTreeWalker#skip}, this method does not iterate over the nodes along the way.
|
|
100
|
+
* It simply sets the current tree walker position to a new one.
|
|
101
|
+
* From the performance standpoint, it is better to use {@link ~ModelTreeWalker#jumpTo} rather than {@link ~ModelTreeWalker#skip}.
|
|
102
|
+
*
|
|
103
|
+
* If the provided position is before the start boundary, the position will be
|
|
104
|
+
* set to the start boundary. If the provided position is after the end boundary,
|
|
105
|
+
* the position will be set to the end boundary.
|
|
106
|
+
* This is done to prevent the treewalker from traversing outside the boundaries.
|
|
107
|
+
*
|
|
108
|
+
* @param position Position to jump to.
|
|
109
|
+
*/
|
|
110
|
+
jumpTo(position: ModelPosition): void;
|
|
111
|
+
/**
|
|
112
|
+
* Gets the next tree walker's value.
|
|
113
|
+
*/
|
|
114
|
+
next(): IteratorResult<ModelTreeWalkerValue>;
|
|
115
|
+
/**
|
|
116
|
+
* Makes a step forward in model. Moves the {@link #position} to the next position and returns the encountered value.
|
|
117
|
+
*/
|
|
118
|
+
private _next;
|
|
119
|
+
/**
|
|
120
|
+
* Makes a step backward in model. Moves the {@link #position} to the previous position and returns the encountered value.
|
|
121
|
+
*/
|
|
122
|
+
private _previous;
|
|
123
123
|
}
|
|
124
124
|
/**
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
export type ModelTreeWalkerValueType =
|
|
125
|
+
* Type of the step made by {@link module:engine/model/treewalker~ModelTreeWalker}.
|
|
126
|
+
* Possible values: `'elementStart'` if walker is at the beginning of a node, `'elementEnd'` if walker is at the end of node,
|
|
127
|
+
* or `'text'` if walker traversed over text.
|
|
128
|
+
*/
|
|
129
|
+
export type ModelTreeWalkerValueType = "elementStart" | "elementEnd" | "text";
|
|
130
130
|
/**
|
|
131
|
-
|
|
132
|
-
|
|
131
|
+
* Object returned by {@link module:engine/model/treewalker~ModelTreeWalker} when traversing tree model.
|
|
132
|
+
*/
|
|
133
133
|
export interface ModelTreeWalkerValue {
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
134
|
+
type: ModelTreeWalkerValueType;
|
|
135
|
+
/**
|
|
136
|
+
* Item between old and new positions of {@link module:engine/model/treewalker~ModelTreeWalker}.
|
|
137
|
+
*/
|
|
138
|
+
item: ModelItem;
|
|
139
|
+
/**
|
|
140
|
+
* Previous position of the iterator.
|
|
141
|
+
* * Forward iteration: For `'elementEnd'` it is the last position inside the element. For all other types it is the
|
|
142
|
+
* position before the item.
|
|
143
|
+
* * Backward iteration: For `'elementStart'` it is the first position inside the element. For all other types it is
|
|
144
|
+
* the position after item.
|
|
145
|
+
*/
|
|
146
|
+
previousPosition: ModelPosition;
|
|
147
|
+
/**
|
|
148
|
+
* Next position of the iterator.
|
|
149
|
+
* * Forward iteration: For `'elementStart'` it is the first position inside the element. For all other types it is
|
|
150
|
+
* the position after the item.
|
|
151
|
+
* * Backward iteration: For `'elementEnd'` it is last position inside element. For all other types it is the position
|
|
152
|
+
* before the item.
|
|
153
|
+
*/
|
|
154
|
+
nextPosition: ModelPosition;
|
|
155
|
+
/**
|
|
156
|
+
* Length of the item. For `'elementStart'` it is 1. For `'text'` it is the length of the text. For `'elementEnd'` it is `undefined`.
|
|
157
|
+
*/
|
|
158
|
+
length?: number;
|
|
159
159
|
}
|
|
160
160
|
/**
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
export type ModelTreeWalkerDirection =
|
|
161
|
+
* Tree walking direction.
|
|
162
|
+
*/
|
|
163
|
+
export type ModelTreeWalkerDirection = "forward" | "backward";
|
|
164
164
|
/**
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
165
|
+
* The configuration of TreeWalker.
|
|
166
|
+
*
|
|
167
|
+
* All parameters are optional, but you have to specify either `boundaries` or `startPosition`.
|
|
168
|
+
*/
|
|
169
169
|
export interface ModelTreeWalkerOptions {
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
170
|
+
/**
|
|
171
|
+
* Walking direction.
|
|
172
|
+
*
|
|
173
|
+
* @default 'forward'
|
|
174
|
+
*/
|
|
175
|
+
direction?: ModelTreeWalkerDirection;
|
|
176
|
+
/**
|
|
177
|
+
* Range to define boundaries of the iterator.
|
|
178
|
+
*/
|
|
179
|
+
boundaries?: ModelRange | null;
|
|
180
|
+
/**
|
|
181
|
+
* Starting position.
|
|
182
|
+
*/
|
|
183
|
+
startPosition?: ModelPosition;
|
|
184
|
+
/**
|
|
185
|
+
* Flag indicating whether all consecutive characters with the same attributes
|
|
186
|
+
* should be returned one by one as multiple {@link module:engine/model/textproxy~ModelTextProxy} (`true`) objects or as one
|
|
187
|
+
* {@link module:engine/model/textproxy~ModelTextProxy} (`false`).
|
|
188
|
+
*/
|
|
189
|
+
singleCharacters?: boolean;
|
|
190
|
+
/**
|
|
191
|
+
* Flag indicating whether iterator should enter elements or not. If the
|
|
192
|
+
* iterator is shallow child nodes of any iterated node will not be returned along with `elementEnd` tag.
|
|
193
|
+
*/
|
|
194
|
+
shallow?: boolean;
|
|
195
|
+
/**
|
|
196
|
+
* Flag indicating whether iterator should ignore `elementEnd` tags.
|
|
197
|
+
* If the option is true walker will not return a parent node of start position. If this option is `true`
|
|
198
|
+
* each {@link module:engine/model/element~ModelElement} will be returned once, while if the option is `false` they might be returned
|
|
199
|
+
* twice: for `'elementStart'` and `'elementEnd'`.
|
|
200
|
+
*/
|
|
201
|
+
ignoreElementEnd?: boolean;
|
|
202
202
|
}
|