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
`OpenTagStartNode` represents the opening part of the [Start tags](https://www.w3.org/TR/2011/WD-html5-20110405/syntax.html#start-tags). (e.g. `<div`)
367
367
368
368
```ts
369
-
interfaceOpenTagStartNode {
369
+
interfaceOpenTagStartNodeextendsBaseNode{
370
370
type:"OpenTagStart";
371
371
value:string;
372
372
}
@@ -377,7 +377,7 @@ interface OpenTagStartNode {
377
377
`OpenTagEndNode` represents the closing part of the [Start tags](https://www.w3.org/TR/2011/WD-html5-20110405/syntax.html#start-tags). (e.g. `>`, `/>`)
378
378
379
379
```ts
380
-
interfaceOpenTagEndNode {
380
+
interfaceOpenTagEndNodeextendsBaseNode{
381
381
type:"OpenTagEnd";
382
382
value:string;
383
383
}
@@ -388,7 +388,7 @@ interface OpenTagEndNode {
388
388
`ClosingTagNode` represents the [End tags](https://www.w3.org/TR/2011/WD-html5-20110405/syntax.html#end-tags). (e.g. `</div>`)
0 commit comments