Skip to content

Instantly share code, notes, and snippets.

@ippeiukai
Created November 14, 2017 02:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ippeiukai/6062593ad0c6c8b3bb6f33c66018f631 to your computer and use it in GitHub Desktop.
Save ippeiukai/6062593ad0c6c8b3bb6f33c66018f631 to your computer and use it in GitHub Desktop.
`SubsetOf` meta type
export type SubsetOf<T> = {
[P in keyof T]?: T[P];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment