Skip to content

Instantly share code, notes, and snippets.

@EchoZhaoH
Last active November 4, 2021 02:13
Show Gist options
  • Save EchoZhaoH/e2697bb89bb764df9652a3e8493c1be9 to your computer and use it in GitHub Desktop.
Save EchoZhaoH/e2697bb89bb764df9652a3e8493c1be9 to your computer and use it in GitHub Desktop.
typescript array ArrayReverse
type ArrayReverse<T extends any[]> = T extends [infer A, ...infer B] ? [...ArrayReverse<B>, A] : T
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment