The @new decorator is used whenever you need to bind to a JavaScript class constructor that requires the new keword for instantiation.
@new
new
type t @new external create: unit => t = "Date" let now = create()
Bind to a JS Object That's a Class