Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
kumilingus committed Oct 26, 2024
1 parent 2a7777e commit df0962e
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions packages/joint-core/types/joint.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -933,6 +933,14 @@ export namespace dia {

isDefaultInteractionPrevented(evt: dia.Event): boolean;

isIntersecting(geometryShape: g.Shape, geometryData?: g.SegmentSubdivisionsOpt | null): boolean;

protected isEnclosedIn(area: g.Rect): boolean;

protected isInArea(area: g.Rect, options: g.StrictOpt): boolean;

protected isAtPoint(point: g.Point, options: g.StrictOpt): boolean;

protected findBySelector(selector: string, root?: SVGElement): SVGElement[];

protected removeHighlighters(): void;
Expand Down Expand Up @@ -1166,8 +1174,6 @@ export namespace dia {
getVertexIndex(x: number, y: number): number;
getVertexIndex(point: Point): number;

isIntersecting(geometryShape: g.Shape, geometryData?: g.SegmentSubdivisionsOpt | null): boolean;

update(): this;

translate(tx: number, ty: number): void;
Expand Down

0 comments on commit df0962e

Please sign in to comment.