Interface Size

Display in API overview

Represents the size of an area in the UI, for example the size of the browser window in which the Mod is rendered. See Mod.windowSize.

interface Size {
    height: number;
    width: number;
}

Properties

height: number

Gets the height.

width: number

Gets the width.

""