Skip to content

Commit 944a74b

Browse files
temp: ignore arrow-doc.
1 parent 521c373 commit 944a74b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/paths.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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'

0 commit comments

Comments
 (0)