wix-incubator / corvid-types

Type definitions for Corvid by Wix
MIT License
5 stars 3 forks source link

Better declaration for wix-window.getBoundingRect() return type #5

Open agankarin opened 5 years ago

agankarin commented 5 years ago

The current declaration is:

type WindowSizeInfo = { window: any document: any; scroll: any; };

The correct declaration is: type WindowSizeInfo = { document: {height: number, width: number}; scroll: {x: number, y: number}; window: {height: number, width: number}; };