Skip to content

Commit

Permalink
fix exported types
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaong committed Sep 20, 2020
1 parent 128ae3f commit d4a9b72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/MiniSearch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ type RawResult = {
* // ]
* ```
*/
export class MiniSearch<T = any> {
class MiniSearch<T = any> {
protected _options: OptionsWithDefaults<T>
protected _index: SearchableMap
protected _documentCount: number
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import MiniSearch from './MiniSearch'

export * from './MiniSearch'
export default MiniSearch

0 comments on commit d4a9b72

Please sign in to comment.