File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -649,8 +649,8 @@ Yields:
649
649
``` idl
650
650
interface Link <: Parent {
651
651
type: "link";
652
- title: string | null;
653
652
url: string;
653
+ title: string | null;
654
654
}
655
655
```
656
656
@@ -665,8 +665,8 @@ Yields:
665
665
``` json
666
666
{
667
667
"type" : " link" ,
668
- "title" : " bravo" ,
669
668
"url" : " http://example.com" ,
669
+ "title" : " bravo" ,
670
670
"children" : [{
671
671
"type" : " text" ,
672
672
"value" : " alpha"
@@ -681,9 +681,9 @@ Yields:
681
681
``` idl
682
682
interface Image <: Node {
683
683
type: "image";
684
+ url: string;
684
685
title: string | null;
685
686
alt: string | null;
686
- url: string;
687
687
}
688
688
```
689
689
@@ -698,8 +698,8 @@ Yields:
698
698
``` json
699
699
{
700
700
"type" : " image" ,
701
- "title" : " bravo" ,
702
701
"url" : " http://example.com" ,
702
+ "title" : " bravo" ,
703
703
"alt" : " alpha"
704
704
}
705
705
```
@@ -850,8 +850,8 @@ and title) of a [`LinkReference`][linkreference] or an
850
850
interface Definition <: Node {
851
851
type: "definition";
852
852
identifier: string;
853
- title: string | null;
854
853
url: string;
854
+ title: string | null;
855
855
}
856
856
```
857
857
@@ -867,8 +867,8 @@ Yields:
867
867
{
868
868
"type" : " definition" ,
869
869
"identifier" : " alpha" ,
870
- "title " : null ,
871
- "url " : " http://example.com "
870
+ "url " : " http://example.com " ,
871
+ "title " : null
872
872
}
873
873
```
874
874
You can’t perform that action at this time.
0 commit comments