Skip to content

Instantly share code, notes, and snippets.

@krotovic
Created April 19, 2021 14:03
Show Gist options
  • Save krotovic/8c93b315cb57ae5e26816da664193a0f to your computer and use it in GitHub Desktop.
Save krotovic/8c93b315cb57ae5e26816da664193a0f to your computer and use it in GitHub Desktop.
TS DeepPartial
declare type DeepPartial<T, K extends keyof T = keyof T> = { [P in K]?: DeepPartial<T[P]> };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment