igniteui-react-core
Version:
Ignite UI React Core.
22 lines (21 loc) • 545 B
TypeScript
import { Base, Point, Type } from "./type";
import { IVisualData } from "./IVisualData";
/**
* @hidden
*/
export declare class PointData extends Base implements IVisualData {
static $t: Type;
constructor(a: number, b: number);
private _x;
get x(): number;
set x(a: number);
private _y;
get y(): number;
set y(a: number);
serialize(): string;
static b(a: Point): PointData;
g(): Point;
equals(a: any): boolean;
getHashCode(): number;
static get empty(): PointData;
}