Skip to content

Instantly share code, notes, and snippets.

@painedpineapple
Created February 21, 2020 16:59
Show Gist options
  • Save painedpineapple/7a7d9220bae5c9131e517d00ad3757dd to your computer and use it in GitHub Desktop.
Save painedpineapple/7a7d9220bae5c9131e517d00ad3757dd to your computer and use it in GitHub Desktop.
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