You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module rec A: {
type t
@send external child: t => B.t = "child"
} = A
and B: {
type t
@send external parent: t => A.t = "parent"
} = B
module C = {
type t
@send external createA: t => A.t = "createA"
}
Using autocomplete for module C showing the function correctly.