In some (our) codebases implicit any is disallowed (noImplicitAny), resulting in error
TypeScript error in /Users/myself/Devel/aproject/node_modules/filepond-plugin-image-preview/types/index.d.ts(32,37):
Parameter 'markupItem' implicitly has an 'any' type. TS7006
This change fixes that. I tried to understand and define the exact shape of markupItem but eventually I chose an explicit any as a safe fix..
In some (our) codebases implicit any is disallowed (
noImplicitAny
), resulting in errorThis change fixes that. I tried to understand and define the exact shape of
markupItem
but eventually I chose an explicitany
as a safe fix..