Interface Size

Represents a two-dimensional size.

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

Properties

Properties

height: number

Defines the height length of the size.

width: number

Defines the width length of the size.