A whole number dimension and its unit of measurement. For example, this can represent 100 pixels.

IntegerWithUnits

interface IntegerWithUnits {
    units: string;
    value: number;
}

Properties

Properties

units: string

The unit of measurement.

IntegerWithUnits

value: number

The dimension value.

IntegerWithUnits