Skip to content

Commit d897d3e

Browse files
committed
fix: path property value type
1 parent a68798d commit d897d3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ export class Property<PropertyValueType extends Value> {
379379
) {}
380380
}
381381

382-
export class PathProperty<T> extends Property<T> {
382+
export class PathProperty extends Property<PathValue> {
383383
/**
384384
* Creates a path object from a set of points and tangents.
385385
* @param points An array of number pair arrays representing x,y coordinates of the path points. The array length must be at least 1, and can be of any greater length.

0 commit comments

Comments
 (0)