A Rect (rectangle) represents coordinates (x, y), and width and height of a section on a Page
class Rect {
new(): Rect
new(left: number, bottom: number, width: number, height: number): Rect
left: number
bottom: number
width: number
height: number
intersect(rect: Rect): void
}
new(): Rect
Create a new instance of a NoPoDoFo Rect with left, bottom, width and height set to 0
new(left: number, bottom: number, width: number, height: number): Rect
Create a new instance of a NoPoDoFo Rect with values provided in constructor.
Rectable left value
Rectangle bottom value
Rectangle width
Rectangle height
intersect(rect: Rect): void
Intersect with another Rect.