Skip to content

Commit

Permalink
Fix build warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
grtlr committed Oct 13, 2021
1 parent b08140f commit bc53bfd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"@types/expect": "^1.20.4",
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"@typescript-eslint/parser": "^5.0.0",
"chai": "^4.2.0",
"eslint": "^6.0.0",
"mocha": "^6.2.0",
Expand Down
2 changes: 2 additions & 0 deletions src/uapca.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,15 @@ export interface AffineTransformation {
* @param {Matrix} A - Linear map defined as row matrix.
* @param {Matrix} b - Translation defined as row vector.
*/
// eslint-disable-next-line @typescript-eslint/no-unused-vars
affineTransformation(A: Matrix, b: Matrix): AffineTransformation;

/**
* Projects a distribution onto a lower dimensional subspace
* defined by the dimensions of the `projectionMatrix`.
* @param {Matrix} projectionMatrix - Defined as column matrix.
*/
// eslint-disable-next-line @typescript-eslint/no-unused-vars
project(projectionMatrix: Matrix): AffineTransformation;
}

Expand Down

0 comments on commit bc53bfd

Please sign in to comment.