UNPKG

igniteui-react-core

Version:
17 lines (16 loc) 489 B
import { PathSegment } from "./PathSegment"; import { PointCollection } from "./PointCollection"; import { PathSegmentType } from "./PathSegmentType"; import { Type } from "./type"; /** * @hidden */ export declare class PolyLineSegment extends PathSegment { static $t: Type; constructor(); _points: PointCollection; get points(): PointCollection; set points(a: PointCollection); protected get_a(): PathSegmentType; get a(): PathSegmentType; }