Skip to content

Instantly share code, notes, and snippets.

@crossjs
Created September 29, 2023 02:32
Show Gist options
  • Save crossjs/6dced9c85b88645fb515a5641ae70c46 to your computer and use it in GitHub Desktop.
Save crossjs/6dced9c85b88645fb515a5641ae70c46 to your computer and use it in GitHub Desktop.
export type DeepPartial<T> = T extends Object
? {
[P in keyof T]?: DeepPartial<T[P]>;
}
: T;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment