Recursive type problem:
Hello,
I'm trying to define a recursive type with the library, but without success, i have the error remoteFieldSchema is unresolvable. What can i do:
thanks in advance.
I'm trying to define a recursive type with the library, but without success, i have the error remoteFieldSchema is unresolvable. What can i do:
const recTypes = type.module({
remoteFieldSchema: {
arguments: type({ "[string]": "string" }),
field: type({ "[string]": "remoteFieldSchema" }).optional(),
},
});thanks in advance.