Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

Commit

Permalink
style: revert indent change
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Aug 15, 2022
1 parent 9b4df18 commit 7075c9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/nuxt/src/app/composables/asyncData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ export type PickFrom<T, K extends Array<string>> = T extends Array<any>
? T
: T extends Record<string, any>
? keyof T extends K[number]
? T // Exact same keys as the target, skip Pick
: Pick<T, K[number]>
? T // Exact same keys as the target, skip Pick
: Pick<T, K[number]>
: T

export type KeysOf<T> = Array<keyof T extends string ? keyof T : string>
Expand Down

0 comments on commit 7075c9f

Please sign in to comment.