diff --git a/CHANGELOG.md b/CHANGELOG.md index fd50024c..ba493b32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ - BREAKING: Fixes the type of `RegExp.Result.t` to be `array>` instead of `array`. https://github.com/rescript-association/rescript-core/pull/234. - Fix type of `Nullable.t` which was not untagged in the implementation. https://github.com/rescript-association/rescript-core/pull/235 +- Remove leftover top-level t<'a>. https://github.com/rescript-association/rescript-core/pull/236 ## 1.4.0 diff --git a/src/RescriptCore.res b/src/RescriptCore.res index 1e245c47..68fc344d 100644 --- a/src/RescriptCore.res +++ b/src/RescriptCore.res @@ -94,7 +94,6 @@ async function main() { */ external import: 'a => promise<'a> = "#import" -type t<'a> = Js.t<'a> module MapperRt = Js.MapperRt module Internal = Js.Internal module Re = Core__RegExp // needed for the %re sugar