windows-ss
Version:
[](https://badge.fury.io/js/windows-ss)
26 lines (25 loc) • 835 B
text/typescript
/**
* Contains properties to form a plain rectangle.
*/
export interface PlainRectangle {
/**
* The left edge of the rectangle.
* @note **IMPORTANT**: This must be of `int` type, meaning no decimals. Else, it will fail applying configuration.
*/
left: number;
/**
* The top edge of the rectangle.
* @note **IMPORTANT**: This must be of `int` type, meaning no decimals. Else, it will fail applying configuration.
*/
top: number;
/**
* The right edge of the rectangle.
* @note **IMPORTANT**: This must be of `int` type, meaning no decimals. Else, it will fail applying configuration.
*/
right: number;
/**
* The bottom edge of the rectangle.
* @note **IMPORTANT**: This must be of `int` type, meaning no decimals. Else, it will fail applying configuration.
*/
bottom: number;
}