UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

30 lines (29 loc) 836 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 LineGeometryData extends GeometryData { static $t: Type; protected get_type(): string; get type(): string; private _x1; get x1(): number; set x1(a: number); private _y1; get y1(): number; set y1(a: number); private _x2; get x2(): number; set x2(a: number); private _y2; get y2(): number; set y2(a: number); protected a(): string; scaleByViewport(a: RectData): void; getPointsOverride(a: List$1<List$1<PointData>>, b: GetPointsSettings): void; }