We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
PathComponent
1 parent 0b88799 commit 7f00560Copy full SHA for 7f00560
intersect.d.ts
@@ -82,6 +82,12 @@ export function parsePath(path: Path): PathComponent[];
82
* ]
83
*/
84
declare type Path = string | PathComponent[];
85
+/**
86
+ * A SVG path component, stored as an array with the operation, and parameters
87
+ *
88
+ * @example
89
+ * ['M', 1, 2]
90
+ */
91
declare type PathComponent = [ string, ...number[] ];
92
93
declare interface Intersection {
0 commit comments