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

Export

IntegerWithUnits

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

Properties

Properties

units: string

The unit of measurement.

Memberof

IntegerWithUnits

value: number

The dimension value.

Memberof

IntegerWithUnits