Docs (4.0.0)
class UIComponent type

type Offsets

Type definition for a measurement applied to padding, margin, or border thickness.

static

type Offsets = string | number | {
    x?: string | number;
    y?: string | number;
    top?: string | number;
    bottom?: string | number;
    left?: string | number;
    right?: string | number;
    start?: string | number;
    end?: string | number;
}

Related