Small fix needed when converting an `interface{}` to typescript. At the moment the generated code is: ``` data: { [key: string]: interface {} } | null; ``` While it should be: ``` data: { [key: string]: any } | null; ```