File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 3232
3333- Deprecate JSON.Classify.classify. https://github.com/rescript-lang/rescript/pull/7315
3434- Hide stdlib modules in output. https://github.com/rescript-lang/rescript/pull/7305
35+ - Deprecate unsafe host-specific bindings from stdlib. https://github.com/rescript-lang/rescript/pull/7334
3536
3637#### :bug : Bug fix
3738
Original file line number Diff line number Diff line change @@ -53,9 +53,9 @@ type null<+'a> = Primitive_js_extern.null<'a>
5353type undefined <+ 'a > = Primitive_js_extern .undefined <'a >
5454type nullable <+ 'a > = Primitive_js_extern .nullable <'a >
5555
56- @val external window : Dom .window = "window"
57- @val external document : Dom .document = "document"
58- @val external globalThis : {.. } = "globalThis"
56+ @deprecated ( "Use rescript-webapi instead" ) @ val external window : Dom .window = "window"
57+ @deprecated ( "Use rescript-webapi instead" ) @ val external document : Dom .document = "document"
58+ @deprecated ( "Use rescript-webapi instead" ) @ val external globalThis : {.. } = "globalThis"
5959
6060/**
6161`import(value)` dynamically import a value or function from a ReScript
You can’t perform that action at this time.
0 commit comments