We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
E.g.:
A.res:
type a = {x?: string}
A.resi:
type a = {y?: string}
=>
Type declarations do not match: type rec a = {?x: string} is not included in type rec a = {?y: string}
It should be x?: string, not ?x: string.
x?: string
?x: string
And isn't rec incorrect, too?
rec