SourceTermAnalysisSystem_vue/node_modules/@antv/x6/es/shape/poly.d.ts
2026-05-15 10:22:44 +08:00

14 lines
538 B
TypeScript

import { Point } from '@antv/x6-geometry';
import { Base } from './base';
import { Node } from '../model/node';
export declare class Poly extends Base {
get points(): string | undefined | null;
set points(pts: string | undefined | null);
getPoints(): string;
setPoints(points?: string | Point.PointLike[] | Point.PointData[] | null, options?: Node.SetOptions): this;
removePoints(): this;
}
export declare namespace Poly {
function pointsToString(points: Point.PointLike[] | Point.PointData[] | string): string;
}