search-index
Version:
A network resilient, persistent full-text search library for the browser and Node.js
19 lines (16 loc) • 363 B
JavaScript
import { SearchIndex as _SearchIndex } from '../SearchIndex.js'
import { BrowserLevel } from 'browser-level'
import { UI as _UI } from '../ui/UI.js'
export class SearchIndex {
constructor (ops = {}) {
return new _SearchIndex({
Level: BrowserLevel,
...ops
})
}
}
export class UI {
constructor (ops = {}) {
return new _UI(ops)
}
}