File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -77,10 +77,10 @@ export type PathsOptions = {
7777 };
7878
7979 type AllPaths = Paths<Post, {leavesOnly: false}>;
80- //=> 'id' | 'author' | 'author.id' | 'author.name' | 'author.name.first' | 'author.name.last'
80+ // => 'id' | 'author' | 'author.id' | 'author.name' | 'author.name.first' | 'author.name.last'
8181
8282 type LeafPaths = Paths<Post, {leavesOnly: true}>;
83- //=> 'id' | 'author.id' | 'author.name.first' | 'author.name.last'
83+ // => 'id' | 'author.id' | 'author.name.first' | 'author.name.last'
8484 ```
8585
8686 @example
@@ -127,7 +127,7 @@ export type PathsOptions = {
127127 //=> 'id' | 'author'
128128
129129 type DepthOne = Paths<Post, {depth: 1}>;
130- //=> 'author.id' | 'author.name'
130+ // => 'author.id' | 'author.name'
131131
132132 type DepthTwo = Paths<Post, {depth: 2}>;
133133 //=> 'author.name.first' | 'author.name.last'
You can’t perform that action at this time.
0 commit comments