ag-charts-community
Version:
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
16 lines (15 loc) • 635 B
TypeScript
import { Path } from './path';
export declare class SvgPath<D = any> extends Path<D> {
private _d;
get d(): string;
set d(d: string);
constructor(d?: string);
}
declare const TranslatableSvgPath_base: new (...args: any[]) => import("../transformable").TranslatableType<SvgPath<any>>;
export declare class TranslatableSvgPath extends TranslatableSvgPath_base {
isPointInPath(x: number, y: number): boolean;
}
declare const RotatableSvgPath_base: new (...args: any[]) => import("../transformable").RotatableType<TranslatableSvgPath>;
export declare class RotatableSvgPath extends RotatableSvgPath_base {
}
export {};