@lexical/react
Version:
This package provides Lexical components and hooks for React applications.
46 lines (45 loc) • 1.55 kB
TypeScript
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
import { Point } from './point';
type ContainsPointReturn = {
result: boolean;
reason: {
isOnTopSide: boolean;
isOnBottomSide: boolean;
isOnLeftSide: boolean;
isOnRightSide: boolean;
};
};
export declare class Rectangle {
private readonly _left;
private readonly _top;
private readonly _right;
private readonly _bottom;
constructor(left: number, top: number, right: number, bottom: number);
get top(): number;
get right(): number;
get bottom(): number;
get left(): number;
get width(): number;
get height(): number;
equals({ top, left, bottom, right }: Rectangle): boolean;
contains({ x, y }: Point): ContainsPointReturn;
contains({ top, left, bottom, right }: Rectangle): boolean;
intersectsWith(rect: Rectangle): boolean;
generateNewRect({ left, top, right, bottom, }: {
left?: number | undefined;
top?: number | undefined;
right?: number | undefined;
bottom?: number | undefined;
}): Rectangle;
static fromLTRB(left: number, top: number, right: number, bottom: number): Rectangle;
static fromLWTH(left: number, width: number, top: number, height: number): Rectangle;
static fromPoints(startPoint: Point, endPoint: Point): Rectangle;
static fromDOM(dom: HTMLElement): Rectangle;
}
export {};