UNPKG

@openfin/automation-helpers

Version:

Helper methods for automation testing in the OpenFin ecosystem

22 lines (21 loc) 285 B
/** * Type definition for rectangle. */ export interface IRect { /** * The x position. */ x: number; /** * The y position. */ y: number; /** * The width. */ width: number; /** * The height. */ height: number; }