react-json-view
react-json-view copied to clipboard
displayArrayKey not present ReactJsonViewProps interface definition
Version: "react-json-view": "^1.21.3",
displayArrayKey not present ReactJsonViewProps interface definition
I noticed the same. Intentional? Probably not as the prop is mentioned at https://www.npmjs.com/package/react-json-view.
I also meet the same problem, any solutions for this?
A PR would be best, but adding this in your own codebase works for me:
declare module "react-json-view" {
export interface ReactJsonViewProps {
displayArrayKey: boolean
}
}