odds-analyzer 2.1.1 → 2.1.3

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.
Files changed (3) hide show
  1. package/index.d.ts +1 -0
  2. package/index.js +1 -1
  3. package/package.json +2 -1
package/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export function getPlugin(any): any;
package/index.js CHANGED
@@ -196,4 +196,4 @@ function getPlugin(reqtoken = token, reqoptions = options, ret = 1) {
196
196
  }
197
197
 
198
198
  // Default export of functions
199
- module.exports = () => getPlugin()
199
+ export default getPlugin;
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "odds-analyzer",
3
- "version": "2.1.1",
3
+ "version": "2.1.3",
4
4
  "description": "Fits the prediction accuracy analysis at different checkpoints",
5
5
  "main": "index.js",
6
+ "types": "index.d.ts",
6
7
  "scripts": {
7
8
  "test": "echo \"Error: no test specified\" && exit 1"
8
9
  },