/// import { GTextBox } from "./g_textbox"; import { ShapeObjectType, ConnectorType } from "../common/enums"; export declare class GPathTextBox extends GTextBox { get svgPath(): SVGPathElement; constructor(svgbox: SVGElement | string); protected createSurface(svgbox: SVGElement): void; private static createSurfacePath; get type(): ShapeObjectType; /** * 接続部分の座標を返します。 * @param type * @param x * @param y */ getContactPosition(type: ConnectorType, x: number, y: number): [number, number]; getContactAutoPosition(x: number, y: number): ConnectorType; }