File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 32
32
33
33
- Deprecate JSON.Classify.classify. https://github.com/rescript-lang/rescript/pull/7315
34
34
- 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
35
36
36
37
#### :bug : Bug fix
37
38
Original file line number Diff line number Diff line change @@ -53,9 +53,9 @@ type null<+'a> = Primitive_js_extern.null<'a>
53
53
type undefined <+ 'a > = Primitive_js_extern .undefined <'a >
54
54
type nullable <+ 'a > = Primitive_js_extern .nullable <'a >
55
55
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"
59
59
60
60
/**
61
61
`import(value)` dynamically import a value or function from a ReScript
You can’t perform that action at this time.
0 commit comments