Interface SizeInfo

Description

An interface for the size of the window

Export

SizeInfo

Example

const sizeInfo: SizeInfo = {
windowWidth: window.innerWidth,
windowHeight: window.innerHeight
};
interface SizeInfo {
    windowHeight: number;
    windowWidth: number;
}

Properties

windowHeight: number
windowWidth: number

Generated using TypeDoc