igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
16 lines (15 loc) • 340 B
TypeScript
import { Description } from "./Description";
import { Type } from "./type";
/**
* @hidden
*/
export declare class PointDescription extends Description {
static $t: Type;
private _x;
get x(): number;
set x(a: number);
private _y;
get y(): number;
set y(a: number);
equals(a: any): boolean;
}