igniteui-react-core
Version:
Ignite UI React Core.
20 lines (19 loc) • 503 B
TypeScript
import { PathSegment } from "./PathSegment";
import { Point, Type } from "./type";
import { SweepDirection } from "./SweepDirection";
import { Size } from "./Size";
import { PathSegmentType } from "./PathSegmentType";
/**
* @hidden
*/
export declare class ArcSegment extends PathSegment {
static $t: Type;
constructor();
e: Point;
b: boolean;
d: SweepDirection;
f: Size;
c: number;
protected get_a(): PathSegmentType;
get a(): PathSegmentType;
}