@khanacademy/perseus-score 7.1.8 → 7.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Perseus score",
4
4
  "author": "Khan Academy",
5
5
  "license": "MIT",
6
- "version": "7.1.8",
6
+ "version": "7.1.10",
7
7
  "publishConfig": {
8
8
  "access": "public"
9
9
  },
@@ -23,8 +23,8 @@
23
23
  ],
24
24
  "dependencies": {
25
25
  "@khanacademy/kas": "2.0.9",
26
- "@khanacademy/kmath": "2.0.21",
27
- "@khanacademy/perseus-core": "16.0.0",
26
+ "@khanacademy/kmath": "2.0.23",
27
+ "@khanacademy/perseus-core": "16.1.1",
28
28
  "@khanacademy/perseus-utils": "2.0.5"
29
29
  },
30
30
  "devDependencies": {
@@ -1,11 +0,0 @@
1
- import type { PerseusNumberLineUserInput, PerseusScore } from "@khanacademy/perseus-core";
2
- /**
3
- * Checks user input is within the allowed range and not the same as the initial
4
- * state.
5
- * @param userInput
6
- * @see 'scoreNumberLine' for the scoring logic.
7
- */
8
- declare function validateNumberLine(userInput: PerseusNumberLineUserInput): Extract<PerseusScore, {
9
- type: "invalid";
10
- }> | null;
11
- export default validateNumberLine;