Created
February 21, 2020 16:59
-
-
Save painedpineapple/7a7d9220bae5c9131e517d00ad3757dd 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
type tz = {. [@bs.meth] "names": unit => array(string)}; | |
type moment = { | |
. | |
[@bs.meth] "tz": string => moment, | |
[@bs.meth] "format": string => string, | |
[@bs.meth] "fromNow": unit => string, | |
}; | |
[@bs.module "moment-timezone"] external tz: tz = "tz"; | |
[@bs.module] external moment: string => moment = "moment-timezone"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment