You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* A null insertion point, indicating that the node should be inserted at the root of the document.
388
+
*/
389
+
exportdeclaretypeRootInsertionPoint=null;
390
+
/**
391
+
* A positive integer insertion point. Inserting a node at positive integer N indicates that the node should be inserted as the last child of the node with an id N lower than the new node.
392
+
*/
393
+
exportdeclaretypeLastChildInsertionPoint=number;
394
+
/**
395
+
* A negative integer insertion point. Inserting a node at negative integer -N indicates that the node should be inserted as the next sibling of the node with an id N lower than the new node.
* Browser-specific. Schema representing the node name for a #cdata-section node, expressed as either a reference to the string table or a literal string.
* Browser-specific. Schema representing the node name for a #document-fragment node, expressed as either a reference to the string table or a literal string.
* Browser-specific. Schema representing the node name for a #shadow-root node, expressed as either a reference to the string table or a literal string.
* A null insertion point, indicating that the node should be inserted at the root of the document.
396
+
*/
397
+
exportdeclaretypeRootInsertionPoint=null;
398
+
/**
399
+
* A positive integer insertion point. Inserting a node at positive integer N indicates that the node should be inserted as the last child of the node with an id N lower than the new node.
400
+
*/
401
+
exportdeclaretypeLastChildInsertionPoint=number;
402
+
/**
403
+
* A negative integer insertion point. Inserting a node at negative integer -N indicates that the node should be inserted as the next sibling of the node with an id N lower than the new node.
* Browser-specific. Schema representing the node name for a #cdata-section node, expressed as either a reference to the string table or a literal string.
* Browser-specific. Schema representing the node name for a #document-fragment node, expressed as either a reference to the string table or a literal string.
* Browser-specific. Schema representing the node name for a #shadow-root node, expressed as either a reference to the string table or a literal string.
0 commit comments