Skip to content

Commit

Permalink
fix (1.0, schema): fix signatures of extensions for constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
0b5vr committed Mar 10, 2022
1 parent fdc97cf commit 5cc0ba5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ export interface AimConstraint {
*/
weight?: number;

extensions?: { [key: string]: { [key: string]: any } };
extensions?: { [name: string]: any };
extras?: any;
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ export interface RollConstraint {
*/
weight?: number;

extensions?: { [key: string]: { [key: string]: any } };
extensions?: { [name: string]: any };
extras?: any;
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ export interface RotationConstraint {
*/
weight?: number;

extensions?: { [key: string]: { [key: string]: any } };
extensions?: { [name: string]: any };
extras?: any;
}

0 comments on commit 5cc0ba5

Please sign in to comment.