We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
@scope
When a binding's @scope has the same name as a module, the binding's scope is shadowed by the module:
module URL = { @val @scope("URL") external revokeObjectURL: string => unit = "revokeObjectURL" } URL.revokeObjectURL("some url")
let URL = {}; URL.revokeObjectURL("some url");