Last active
June 23, 2018 00:49
-
-
Save kennetpostigo/e4c7c8631e54dba249650f9a5d8d3280 to your computer and use it in GitHub Desktop.
Reason Phantom Type Animal Type catch all
This file contains 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
module type Animal = { | |
/* ... */ | |
let mate: (t('a), t('a)) => string; | |
let interMate: (t('a), t('b)) => string; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment