fix genType

This commit is contained in:
Vyacheslav Matyukhin 2022-07-31 00:20:51 +04:00
parent 17c3fe9dd8
commit 5d744fe2d0
No known key found for this signature in database
GPG Key ID: 3D2A774C5489F96C

View File

@ -30,7 +30,6 @@ type rec externalExpressionValue =
| EvType(record) | EvType(record)
| EvVoid | EvVoid
and record = Js.Dict.t<externalExpressionValue> and record = Js.Dict.t<externalExpressionValue>
and externalBindings = record
and lambdaValue = { and lambdaValue = {
parameters: array<string>, parameters: array<string>,
context: hiddenNameSpace, context: hiddenNameSpace,
@ -38,6 +37,9 @@ and lambdaValue = {
} }
and lambdaDeclaration = Declaration.declaration<lambdaValue> and lambdaDeclaration = Declaration.declaration<lambdaValue>
@genType
type externalBindings = record
@genType @genType
type t = externalExpressionValue type t = externalExpressionValue