@orca-fe/x-map
Version:
15 lines (14 loc) • 456 B
TypeScript
import { Point } from '../../defs';
import SvgLine, { SvgLineOptions } from './SvgLine';
export interface SvgArcLineOptions extends SvgLineOptions {
from: Point;
to: Point;
style?: Partial<CSSStyleDeclaration>;
alpha?: number;
}
export default class SvgArcLine extends SvgLine {
protected alpha: number;
constructor(options: SvgArcLineOptions);
setAlpha: (alpha: number) => void;
updatePosition: () => void;
}