File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 33
33
34
34
- Deprecate JSON.Classify.classify. https://github.com/rescript-lang/rescript/pull/7315
35
35
- Hide stdlib modules in output. https://github.com/rescript-lang/rescript/pull/7305
36
+ - Deprecate unsafe host-specific bindings from stdlib. https://github.com/rescript-lang/rescript/pull/7334
36
37
37
38
#### :bug : Bug fix
38
39
Original file line number Diff line number Diff line change @@ -53,8 +53,8 @@ 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"
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
58
@val external globalThis : {.. } = "globalThis"
59
59
60
60
/**
You can’t perform that action at this time.
0 commit comments