Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save adam-cyclones/a31ffd3982c8421138f9ae7e142e41d0 to your computer and use it in GitHub Desktop.
Save adam-cyclones/a31ffd3982c8421138f9ae7e142e41d0 to your computer and use it in GitHub Desktop.
//optional
//Takes an interface and enforces its keys but optionally.
//SO SO handy!
type Partial<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