Skip to content

Instantly share code, notes, and snippets.

@matthewsimo
Created September 28, 2023 21:05
Show Gist options
  • Save matthewsimo/2e038da56f05cd173092e21ecf53d0a4 to your computer and use it in GitHub Desktop.
Save matthewsimo/2e038da56f05cd173092e21ecf53d0a4 to your computer and use it in GitHub Desktop.
Optional Type Util TS
export type Optional<T, U extends keyof T> = Partial<Pick<T, U>> & Omit<T, U>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment