Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
qdequele committed Nov 26, 2019
1 parent e25f0ed commit 6b2b7b0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 12 deletions.
11 changes: 0 additions & 11 deletions src/index.ts
Expand Up @@ -142,17 +142,6 @@ class Meili {
return this.instance.get(url)
}

/**
* Get the stats of one index
* @memberof Admin
* @method indexStats
*/
indexStats(indexUid: string): Promise<object> {
const url = `/stats/${indexUid}`

return this.instance.get(url)
}

/**
* Get the version of the server
* @memberof Admin
Expand Down
2 changes: 1 addition & 1 deletion src/indexes.ts
Expand Up @@ -65,7 +65,7 @@ class Indexes {
}

if (options.offset) {
params['offset'] = options.offset
params.offset = options.offset
}
if (options.limit) {
params.limit = options.limit
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Expand Up @@ -24,5 +24,6 @@
]
},
"include": ["./src"],
"exclude": ["./src/__tests__"],
"compileOnSave": false
}

0 comments on commit 6b2b7b0

Please sign in to comment.