Skip to content

Instantly share code, notes, and snippets.

@Ligalaiz
Created February 18, 2022 13:15
Show Gist options
  • Save Ligalaiz/4aeb0d61deb77fdbb5197942cc7dfcf7 to your computer and use it in GitHub Desktop.
Save Ligalaiz/4aeb0d61deb77fdbb5197942cc7dfcf7 to your computer and use it in GitHub Desktop.

TypeScript Deep Partial Interface

export type DeepPartial<T> = T extends Function ? 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