igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
18 lines (17 loc) • 487 B
TypeScript
import { PathSegment } from "./PathSegment";
import { Point, Type } from "./type";
import { PathSegmentType } from "./PathSegmentType";
/**
* @hidden
*/
export declare class LineSegment extends PathSegment {
static $t: Type;
private b;
get c(): Point;
set c(a: Point);
constructor(a: number, b: Point);
constructor(a: number);
constructor(a: number, ..._rest: any[]);
protected get_a(): PathSegmentType;
get a(): PathSegmentType;
}