UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

30 lines (29 loc) 856 B
import { GeometryData } from "./GeometryData"; import { Type } from "./type"; import { RectData } from "./RectData"; import { List$1 } from "./List$1"; import { PointData } from "./PointData"; import { GetPointsSettings } from "./GetPointsSettings"; /** * @hidden */ export declare class RectangleGeometryData extends GeometryData { static $t: Type; protected get_type(): string; get type(): string; private _x; get x(): number; set x(a: number); private _y; get y(): number; set y(a: number); private _width; get width(): number; set width(a: number); private _height; get height(): number; set height(a: number); protected a(): string; scaleByViewport(a: RectData): void; getPointsOverride(a: List$1<List$1<PointData>>, b: GetPointsSettings): void; }