@tempots/dom

Size type

Represents the size of an object with width and height.

Signature:

export type Size = {
    readonly width: number;
    readonly height: number;
};