Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
deptyped committed Apr 11, 2024
1 parent 4982388 commit 7ba9619
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/extension.ts
Expand Up @@ -34,10 +34,10 @@ type Paginator<O extends PaginatorOptions> = <T, A>(
TOptions extends { includePageCount: boolean }
? TOptions["includePageCount"]
: // else if global includePageCount provided
O["pages"] extends { includePageCount: boolean }
? O["pages"]["includePageCount"]
: // else
false
O["pages"] extends { includePageCount: boolean }
? O["pages"]["includePageCount"]
: // else
false
>,
]
>
Expand All @@ -54,9 +54,9 @@ type Paginator<O extends PaginatorOptions> = <T, A>(
TOptions extends { includePageCount: boolean }
? TOptions["includePageCount"]
: // else if global includePageCount provided
O["pages"] extends { includePageCount: boolean }
? O["pages"]["includePageCount"]
: false
O["pages"] extends { includePageCount: boolean }
? O["pages"]["includePageCount"]
: false
>,
]
>;
Expand Down

0 comments on commit 7ba9619

Please sign in to comment.