Created
February 28, 2017 20:49
-
-
Save adam-cyclones/a31ffd3982c8421138f9ae7e142e41d0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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