@types/fbjs
Version:
TypeScript definitions for fbjs
16 lines (12 loc) • 371 B
TypeScript
/**
* Gets the viewport dimensions including any scrollbars.
*/
declare function getViewportDimensions(): getViewportDimensions.ViewportDimensions;
declare namespace getViewportDimensions {
interface ViewportDimensions {
width: number;
height: number;
}
function withoutScrollbars(): ViewportDimensions;
}
export = getViewportDimensions;