StrengthFuncton wrong type for point argument
StrengthFuncton wrong type for point argument, currently it's not number as specified, but {x:number, y:number}. I believe it should be smth like:
interface Point {
x: number;
y: number:
}
And also I guess StrengthFuncton should be StrengthFunction
export type StrengthFunction = (box: BoxType, point: Point) => number;
which package is the type being defined?
Here is the path: https://github.com/TechStark/react-dnd-scrolling/blob/develop/types/index.d.ts

@KirillZhdanov would you like to create a PR to fix it?
@KirillZhdanov Updated in https://github.com/TechStark/react-dnd-scrolling/releases/tag/v1.3.0 Thanks for your reporting.