state sync
This commit is contained in:
13
app/basepak/static/js/mermaid/dagre-wrapper/intersect/intersect-line.d.ts
vendored
Normal file
13
app/basepak/static/js/mermaid/dagre-wrapper/intersect/intersect-line.d.ts
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
export default intersectLine;
|
||||
/**
|
||||
* Returns the point at which two lines, p and q, intersect or returns undefined if they do not intersect.
|
||||
*
|
||||
* @param p1
|
||||
* @param p2
|
||||
* @param q1
|
||||
* @param q2
|
||||
*/
|
||||
declare function intersectLine(p1: any, p2: any, q1: any, q2: any): {
|
||||
x: number;
|
||||
y: number;
|
||||
} | undefined;
|
||||
Reference in New Issue
Block a user