id | keywords | name | summary | category | ||
---|---|---|---|---|---|---|
module-decorator |
|
@module |
This is the `@module` decorator. |
decorators |
The @module
decorator is used to bind to a JavaScript module.
<CodeTab labels={["ReScript", "JS Output"]}>
@module("path")
external dirname: string => string = "dirname"
let root = dirname("/User/github")
var Path = require("path");
var root = Path.dirname("/User/github");