I have a solution already but I'd like it to get sanity checked
In same file as error just switch line 14 from
export type Errors = NonEmptyArray<string>;
to
export type Errors = NonEmptyArray<AnyJson>;
I got it passing all tests and I'll be making a pull request with it soon
Steps to Reproduce
Observed Behaviour
Expected Behaviour
Possible Solution
export type Errors = NonEmptyArray<string>;
toexport type Errors = NonEmptyArray<AnyJson>;
I got it passing all tests and I'll be making a pull request with it soon