UNPKG

@aurigma/design-atoms-model

Version:

Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.

21 lines (20 loc) 770 B
import { Item } from "./Item"; import { PointF } from "../../Math/PointF"; import { Color } from "../../Colors"; export declare class PolylineItem extends Item { private _width; private _color; private _points; constructor(points?: PointF[]); get width(): number; set width(value: number); get color(): Color; set color(value: Color); get sourcePoints(): PointF[]; set sourcePoints(value: PointF[]); static type: string; type: string; protected _copy(source: PolylineItem, destination: PolylineItem, generateNewIds: boolean, appropriateParentContainer: boolean): void; equals(other: PolylineItem): any; clone(generateNewIds?: boolean, appropriateParentContainer?: boolean): PolylineItem; }