Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 589 Bytes

decorator_module.mdx

File metadata and controls

32 lines (22 loc) · 589 Bytes
id keywords name summary category
module-decorator
module
decorator
@module
This is the `@module` decorator.
decorators

The @module decorator is used to bind to a JavaScript module.

Example

<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");

References