├── .editorconfig ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEVELOPER.md ├── LICENSE ├── README.md ├── benchmark ├── benchmark.js └── benchmark_indexes.js ├── config ├── jasmine.json ├── karma.config.js ├── nycrc.json ├── nycrc.node.json ├── tsconfig.tslint.json ├── tsconfig.webpack.json ├── tslint.json └── webpack-config-creator.js ├── dist └── packages │ ├── fs-storage │ ├── lokidb.fs-storage.js │ ├── lokidb.fs-storage.js.map │ ├── lokidb.fs-storage.min.js │ └── types │ │ ├── common │ │ ├── plugin.d.ts │ │ └── types.d.ts │ │ ├── fs-storage │ │ └── src │ │ │ ├── fs_storage.d.ts │ │ │ └── index.d.ts │ │ ├── full-text-search-language-de │ │ └── src │ │ │ ├── german_analyzer.d.ts │ │ │ └── index.d.ts │ │ ├── full-text-search-language-en │ │ └── src │ │ │ ├── english_analyzer.d.ts │ │ │ └── index.d.ts │ │ ├── full-text-search-language │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── language.d.ts │ │ ├── full-text-search │ │ └── src │ │ │ ├── analyzer │ │ │ ├── analyzer.d.ts │ │ │ ├── character_filter.d.ts │ │ │ ├── token_filter.d.ts │ │ │ └── tokenizer.d.ts │ │ │ ├── full_text_search.d.ts │ │ │ ├── fuzzy │ │ │ ├── automaton.d.ts │ │ │ ├── lev1t_parametric_description.d.ts │ │ │ ├── lev2t_parametric_description.d.ts │ │ │ ├── levenshtein_automata.d.ts │ │ │ ├── long.d.ts │ │ │ ├── parametric_description.d.ts │ │ │ └── run_automaton.d.ts │ │ │ ├── index.d.ts │ │ │ ├── index_searcher.d.ts │ │ │ ├── inverted_index.d.ts │ │ │ ├── query_types.d.ts │ │ │ └── scorer.d.ts │ │ ├── indexed-storage │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── indexed_storage.d.ts │ │ ├── local-storage │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── local_storage.d.ts │ │ ├── loki │ │ └── src │ │ │ ├── avl_index.d.ts │ │ │ ├── clone.d.ts │ │ │ ├── collection.d.ts │ │ │ ├── comparators.d.ts │ │ │ ├── dynamic_view.d.ts │ │ │ ├── event_emitter.d.ts │ │ │ ├── index.d.ts │ │ │ ├── loki.d.ts │ │ │ ├── operator_packages.d.ts │ │ │ ├── ranged_indexes.d.ts │ │ │ ├── result_set.d.ts │ │ │ └── unique_index.d.ts │ │ ├── memory-storage │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── memory_storage.d.ts │ │ └── partitioning-adapter │ │ └── src │ │ ├── index.d.ts │ │ └── partitioning_adapter.d.ts │ ├── full-text-search-language-de │ ├── lokidb.full-text-search-language-de.js │ ├── lokidb.full-text-search-language-de.js.map │ ├── lokidb.full-text-search-language-de.min.js │ └── types │ │ ├── common │ │ ├── plugin.d.ts │ │ └── types.d.ts │ │ ├── fs-storage │ │ └── src │ │ │ ├── fs_storage.d.ts │ │ │ └── index.d.ts │ │ ├── full-text-search-language-de │ │ └── src │ │ │ ├── german_analyzer.d.ts │ │ │ └── index.d.ts │ │ ├── full-text-search-language-en │ │ └── src │ │ │ ├── english_analyzer.d.ts │ │ │ └── index.d.ts │ │ ├── full-text-search-language │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── language.d.ts │ │ ├── full-text-search │ │ └── src │ │ │ ├── analyzer │ │ │ ├── analyzer.d.ts │ │ │ ├── character_filter.d.ts │ │ │ ├── token_filter.d.ts │ │ │ └── tokenizer.d.ts │ │ │ ├── full_text_search.d.ts │ │ │ ├── fuzzy │ │ │ ├── automaton.d.ts │ │ │ ├── lev1t_parametric_description.d.ts │ │ │ ├── lev2t_parametric_description.d.ts │ │ │ ├── levenshtein_automata.d.ts │ │ │ ├── long.d.ts │ │ │ ├── parametric_description.d.ts │ │ │ └── run_automaton.d.ts │ │ │ ├── index.d.ts │ │ │ ├── index_searcher.d.ts │ │ │ ├── inverted_index.d.ts │ │ │ ├── query_types.d.ts │ │ │ └── scorer.d.ts │ │ ├── indexed-storage │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── indexed_storage.d.ts │ │ ├── local-storage │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── local_storage.d.ts │ │ ├── loki │ │ └── src │ │ │ ├── avl_index.d.ts │ │ │ ├── clone.d.ts │ │ │ ├── collection.d.ts │ │ │ ├── comparators.d.ts │ │ │ ├── dynamic_view.d.ts │ │ │ ├── event_emitter.d.ts │ │ │ ├── index.d.ts │ │ │ ├── loki.d.ts │ │ │ ├── operator_packages.d.ts │ │ │ ├── ranged_indexes.d.ts │ │ │ ├── result_set.d.ts │ │ │ └── unique_index.d.ts │ │ ├── memory-storage │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── memory_storage.d.ts │ │ └── partitioning-adapter │ │ └── src │ │ ├── index.d.ts │ │ └── partitioning_adapter.d.ts │ ├── full-text-search-language-en │ ├── lokidb.full-text-search-language-en.js │ ├── lokidb.full-text-search-language-en.js.map │ ├── lokidb.full-text-search-language-en.min.js │ └── types │ │ ├── common │ │ ├── plugin.d.ts │ │ └── types.d.ts │ │ ├── fs-storage │ │ └── src │ │ │ ├── fs_storage.d.ts │ │ │ └── index.d.ts │ │ ├── full-text-search-language-de │ │ └── src │ │ │ ├── german_analyzer.d.ts │ │ │ └── index.d.ts │ │ ├── full-text-search-language-en │ │ └── src │ │ │ ├── english_analyzer.d.ts │ │ │ └── index.d.ts │ │ ├── full-text-search-language │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── language.d.ts │ │ ├── full-text-search │ │ └── src │ │ │ ├── analyzer │ │ │ ├── analyzer.d.ts │ │ │ ├── character_filter.d.ts │ │ │ ├── token_filter.d.ts │ │ │ └── tokenizer.d.ts │ │ │ ├── full_text_search.d.ts │ │ │ ├── fuzzy │ │ │ ├── automaton.d.ts │ │ │ ├── lev1t_parametric_description.d.ts │ │ │ ├── lev2t_parametric_description.d.ts │ │ │ ├── levenshtein_automata.d.ts │ │ │ ├── long.d.ts │ │ │ ├── parametric_description.d.ts │ │ │ └── run_automaton.d.ts │ │ │ ├── index.d.ts │ │ │ ├── index_searcher.d.ts │ │ │ ├── inverted_index.d.ts │ │ │ ├── query_types.d.ts │ │ │ └── scorer.d.ts │ │ ├── indexed-storage │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── indexed_storage.d.ts │ │ ├── local-storage │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── local_storage.d.ts │ │ ├── loki │ │ └── src │ │ │ ├── avl_index.d.ts │ │ │ ├── clone.d.ts │ │ │ ├── collection.d.ts │ │ │ ├── comparators.d.ts │ │ │ ├── dynamic_view.d.ts │ │ │ ├── event_emitter.d.ts │ │ │ ├── index.d.ts │ │ │ ├── loki.d.ts │ │ │ ├── operator_packages.d.ts │ │ │ ├── ranged_indexes.d.ts │ │ │ ├── result_set.d.ts │ │ │ └── unique_index.d.ts │ │ ├── memory-storage │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── memory_storage.d.ts │ │ └── partitioning-adapter │ │ └── src │ │ ├── index.d.ts │ │ └── partitioning_adapter.d.ts │ ├── full-text-search-language │ ├── lokidb.full-text-search-language.js │ ├── lokidb.full-text-search-language.js.map │ ├── lokidb.full-text-search-language.min.js │ └── types │ │ ├── common │ │ ├── plugin.d.ts │ │ └── types.d.ts │ │ ├── fs-storage │ │ └── src │ │ │ ├── fs_storage.d.ts │ │ │ └── index.d.ts │ │ ├── full-text-search-language-de │ │ └── src │ │ │ ├── german_analyzer.d.ts │ │ │ └── index.d.ts │ │ ├── full-text-search-language-en │ │ └── src │ │ │ ├── english_analyzer.d.ts │ │ │ └── index.d.ts │ │ ├── full-text-search-language │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── language.d.ts │ │ ├── full-text-search │ │ └── src │ │ │ ├── analyzer │ │ │ ├── analyzer.d.ts │ │ │ ├── character_filter.d.ts │ │ │ ├── token_filter.d.ts │ │ │ └── tokenizer.d.ts │ │ │ ├── full_text_search.d.ts │ │ │ ├── fuzzy │ │ │ ├── automaton.d.ts │ │ │ ├── lev1t_parametric_description.d.ts │ │ │ ├── lev2t_parametric_description.d.ts │ │ │ ├── levenshtein_automata.d.ts │ │ │ ├── long.d.ts │ │ │ ├── parametric_description.d.ts │ │ │ └── run_automaton.d.ts │ │ │ ├── index.d.ts │ │ │ ├── index_searcher.d.ts │ │ │ ├── inverted_index.d.ts │ │ │ ├── query_types.d.ts │ │ │ └── scorer.d.ts │ │ ├── indexed-storage │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── indexed_storage.d.ts │ │ ├── local-storage │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── local_storage.d.ts │ │ ├── loki │ │ └── src │ │ │ ├── avl_index.d.ts │ │ │ ├── clone.d.ts │ │ │ ├── collection.d.ts │ │ │ ├── comparators.d.ts │ │ │ ├── dynamic_view.d.ts │ │ │ ├── event_emitter.d.ts │ │ │ ├── index.d.ts │ │ │ ├── loki.d.ts │ │ │ ├── operator_packages.d.ts │ │ │ ├── ranged_indexes.d.ts │ │ │ ├── result_set.d.ts │ │ │ └── unique_index.d.ts │ │ ├── memory-storage │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── memory_storage.d.ts │ │ └── partitioning-adapter │ │ └── src │ │ ├── index.d.ts │ │ └── partitioning_adapter.d.ts │ ├── full-text-search │ ├── lokidb.full-text-search.js │ ├── lokidb.full-text-search.js.map │ ├── lokidb.full-text-search.min.js │ └── types │ │ ├── common │ │ ├── plugin.d.ts │ │ └── types.d.ts │ │ ├── fs-storage │ │ └── src │ │ │ ├── fs_storage.d.ts │ │ │ └── index.d.ts │ │ ├── full-text-search-language-de │ │ └── src │ │ │ ├── german_analyzer.d.ts │ │ │ └── index.d.ts │ │ ├── full-text-search-language-en │ │ └── src │ │ │ ├── english_analyzer.d.ts │ │ │ └── index.d.ts │ │ ├── full-text-search-language │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── language.d.ts │ │ ├── full-text-search │ │ └── src │ │ │ ├── analyzer │ │ │ ├── analyzer.d.ts │ │ │ ├── character_filter.d.ts │ │ │ ├── token_filter.d.ts │ │ │ └── tokenizer.d.ts │ │ │ ├── full_text_search.d.ts │ │ │ ├── fuzzy │ │ │ ├── automaton.d.ts │ │ │ ├── lev1t_parametric_description.d.ts │ │ │ ├── lev2t_parametric_description.d.ts │ │ │ ├── levenshtein_automata.d.ts │ │ │ ├── long.d.ts │ │ │ ├── parametric_description.d.ts │ │ │ └── run_automaton.d.ts │ │ │ ├── index.d.ts │ │ │ ├── index_searcher.d.ts │ │ │ ├── inverted_index.d.ts │ │ │ ├── query_types.d.ts │ │ │ └── scorer.d.ts │ │ ├── indexed-storage │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── indexed_storage.d.ts │ │ ├── local-storage │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── local_storage.d.ts │ │ ├── loki │ │ └── src │ │ │ ├── avl_index.d.ts │ │ │ ├── clone.d.ts │ │ │ ├── collection.d.ts │ │ │ ├── comparators.d.ts │ │ │ ├── dynamic_view.d.ts │ │ │ ├── event_emitter.d.ts │ │ │ ├── index.d.ts │ │ │ ├── loki.d.ts │ │ │ ├── operator_packages.d.ts │ │ │ ├── ranged_indexes.d.ts │ │ │ ├── result_set.d.ts │ │ │ └── unique_index.d.ts │ │ ├── memory-storage │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── memory_storage.d.ts │ │ └── partitioning-adapter │ │ └── src │ │ ├── index.d.ts │ │ └── partitioning_adapter.d.ts │ ├── indexed-storage │ ├── lokidb.indexed-storage.js │ ├── lokidb.indexed-storage.js.map │ ├── lokidb.indexed-storage.min.js │ └── types │ │ ├── common │ │ ├── plugin.d.ts │ │ └── types.d.ts │ │ ├── fs-storage │ │ └── src │ │ │ ├── fs_storage.d.ts │ │ │ └── index.d.ts │ │ ├── full-text-search-language-de │ │ └── src │ │ │ ├── german_analyzer.d.ts │ │ │ └── index.d.ts │ │ ├── full-text-search-language-en │ │ └── src │ │ │ ├── english_analyzer.d.ts │ │ │ └── index.d.ts │ │ ├── full-text-search-language │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── language.d.ts │ │ ├── full-text-search │ │ └── src │ │ │ ├── analyzer │ │ │ ├── analyzer.d.ts │ │ │ ├── character_filter.d.ts │ │ │ ├── token_filter.d.ts │ │ │ └── tokenizer.d.ts │ │ │ ├── full_text_search.d.ts │ │ │ ├── fuzzy │ │ │ ├── automaton.d.ts │ │ │ ├── lev1t_parametric_description.d.ts │ │ │ ├── lev2t_parametric_description.d.ts │ │ │ ├── levenshtein_automata.d.ts │ │ │ ├── long.d.ts │ │ │ ├── parametric_description.d.ts │ │ │ └── run_automaton.d.ts │ │ │ ├── index.d.ts │ │ │ ├── index_searcher.d.ts │ │ │ ├── inverted_index.d.ts │ │ │ ├── query_types.d.ts │ │ │ └── scorer.d.ts │ │ ├── indexed-storage │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── indexed_storage.d.ts │ │ ├── local-storage │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── local_storage.d.ts │ │ ├── loki │ │ └── src │ │ │ ├── avl_index.d.ts │ │ │ ├── clone.d.ts │ │ │ ├── collection.d.ts │ │ │ ├── comparators.d.ts │ │ │ ├── dynamic_view.d.ts │ │ │ ├── event_emitter.d.ts │ │ │ ├── index.d.ts │ │ │ ├── loki.d.ts │ │ │ ├── operator_packages.d.ts │ │ │ ├── ranged_indexes.d.ts │ │ │ ├── result_set.d.ts │ │ │ └── unique_index.d.ts │ │ ├── memory-storage │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── memory_storage.d.ts │ │ └── partitioning-adapter │ │ └── src │ │ ├── index.d.ts │ │ └── partitioning_adapter.d.ts │ ├── local-storage │ ├── lokidb.local-storage.js │ ├── lokidb.local-storage.js.map │ ├── lokidb.local-storage.min.js │ └── types │ │ ├── common │ │ ├── plugin.d.ts │ │ └── types.d.ts │ │ ├── fs-storage │ │ └── src │ │ │ ├── fs_storage.d.ts │ │ │ └── index.d.ts │ │ ├── full-text-search-language-de │ │ └── src │ │ │ ├── german_analyzer.d.ts │ │ │ └── index.d.ts │ │ ├── full-text-search-language-en │ │ └── src │ │ │ ├── english_analyzer.d.ts │ │ │ └── index.d.ts │ │ ├── full-text-search-language │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── language.d.ts │ │ ├── full-text-search │ │ └── src │ │ │ ├── analyzer │ │ │ ├── analyzer.d.ts │ │ │ ├── character_filter.d.ts │ │ │ ├── token_filter.d.ts │ │ │ └── tokenizer.d.ts │ │ │ ├── full_text_search.d.ts │ │ │ ├── fuzzy │ │ │ ├── automaton.d.ts │ │ │ ├── lev1t_parametric_description.d.ts │ │ │ ├── lev2t_parametric_description.d.ts │ │ │ ├── levenshtein_automata.d.ts │ │ │ ├── long.d.ts │ │ │ ├── parametric_description.d.ts │ │ │ └── run_automaton.d.ts │ │ │ ├── index.d.ts │ │ │ ├── index_searcher.d.ts │ │ │ ├── inverted_index.d.ts │ │ │ ├── query_types.d.ts │ │ │ └── scorer.d.ts │ │ ├── indexed-storage │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── indexed_storage.d.ts │ │ ├── local-storage │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── local_storage.d.ts │ │ ├── loki │ │ └── src │ │ │ ├── avl_index.d.ts │ │ │ ├── clone.d.ts │ │ │ ├── collection.d.ts │ │ │ ├── comparators.d.ts │ │ │ ├── dynamic_view.d.ts │ │ │ ├── event_emitter.d.ts │ │ │ ├── index.d.ts │ │ │ ├── loki.d.ts │ │ │ ├── operator_packages.d.ts │ │ │ ├── ranged_indexes.d.ts │ │ │ ├── result_set.d.ts │ │ │ └── unique_index.d.ts │ │ ├── memory-storage │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── memory_storage.d.ts │ │ └── partitioning-adapter │ │ └── src │ │ ├── index.d.ts │ │ └── partitioning_adapter.d.ts │ ├── loki │ ├── lokidb.loki.js │ ├── lokidb.loki.js.map │ ├── lokidb.loki.min.js │ └── types │ │ ├── common │ │ ├── plugin.d.ts │ │ └── types.d.ts │ │ ├── fs-storage │ │ └── src │ │ │ ├── fs_storage.d.ts │ │ │ └── index.d.ts │ │ ├── full-text-search-language-de │ │ └── src │ │ │ ├── german_analyzer.d.ts │ │ │ └── index.d.ts │ │ ├── full-text-search-language-en │ │ └── src │ │ │ ├── english_analyzer.d.ts │ │ │ └── index.d.ts │ │ ├── full-text-search-language │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── language.d.ts │ │ ├── full-text-search │ │ └── src │ │ │ ├── analyzer │ │ │ ├── analyzer.d.ts │ │ │ ├── character_filter.d.ts │ │ │ ├── token_filter.d.ts │ │ │ └── tokenizer.d.ts │ │ │ ├── full_text_search.d.ts │ │ │ ├── fuzzy │ │ │ ├── automaton.d.ts │ │ │ ├── lev1t_parametric_description.d.ts │ │ │ ├── lev2t_parametric_description.d.ts │ │ │ ├── levenshtein_automata.d.ts │ │ │ ├── long.d.ts │ │ │ ├── parametric_description.d.ts │ │ │ └── run_automaton.d.ts │ │ │ ├── index.d.ts │ │ │ ├── index_searcher.d.ts │ │ │ ├── inverted_index.d.ts │ │ │ ├── query_types.d.ts │ │ │ └── scorer.d.ts │ │ ├── indexed-storage │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── indexed_storage.d.ts │ │ ├── local-storage │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── local_storage.d.ts │ │ ├── loki │ │ └── src │ │ │ ├── avl_index.d.ts │ │ │ ├── clone.d.ts │ │ │ ├── collection.d.ts │ │ │ ├── comparators.d.ts │ │ │ ├── dynamic_view.d.ts │ │ │ ├── event_emitter.d.ts │ │ │ ├── index.d.ts │ │ │ ├── loki.d.ts │ │ │ ├── operator_packages.d.ts │ │ │ ├── ranged_indexes.d.ts │ │ │ ├── result_set.d.ts │ │ │ └── unique_index.d.ts │ │ ├── memory-storage │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── memory_storage.d.ts │ │ └── partitioning-adapter │ │ └── src │ │ ├── index.d.ts │ │ └── partitioning_adapter.d.ts │ ├── memory-storage │ ├── lokidb.memory-storage.js │ ├── lokidb.memory-storage.js.map │ ├── lokidb.memory-storage.min.js │ └── types │ │ ├── common │ │ ├── plugin.d.ts │ │ └── types.d.ts │ │ ├── fs-storage │ │ └── src │ │ │ ├── fs_storage.d.ts │ │ │ └── index.d.ts │ │ ├── full-text-search-language-de │ │ └── src │ │ │ ├── german_analyzer.d.ts │ │ │ └── index.d.ts │ │ ├── full-text-search-language-en │ │ └── src │ │ │ ├── english_analyzer.d.ts │ │ │ └── index.d.ts │ │ ├── full-text-search-language │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── language.d.ts │ │ ├── full-text-search │ │ └── src │ │ │ ├── analyzer │ │ │ ├── analyzer.d.ts │ │ │ ├── character_filter.d.ts │ │ │ ├── token_filter.d.ts │ │ │ └── tokenizer.d.ts │ │ │ ├── full_text_search.d.ts │ │ │ ├── fuzzy │ │ │ ├── automaton.d.ts │ │ │ ├── lev1t_parametric_description.d.ts │ │ │ ├── lev2t_parametric_description.d.ts │ │ │ ├── levenshtein_automata.d.ts │ │ │ ├── long.d.ts │ │ │ ├── parametric_description.d.ts │ │ │ └── run_automaton.d.ts │ │ │ ├── index.d.ts │ │ │ ├── index_searcher.d.ts │ │ │ ├── inverted_index.d.ts │ │ │ ├── query_types.d.ts │ │ │ └── scorer.d.ts │ │ ├── indexed-storage │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── indexed_storage.d.ts │ │ ├── local-storage │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── local_storage.d.ts │ │ ├── loki │ │ └── src │ │ │ ├── avl_index.d.ts │ │ │ ├── clone.d.ts │ │ │ ├── collection.d.ts │ │ │ ├── comparators.d.ts │ │ │ ├── dynamic_view.d.ts │ │ │ ├── event_emitter.d.ts │ │ │ ├── index.d.ts │ │ │ ├── loki.d.ts │ │ │ ├── operator_packages.d.ts │ │ │ ├── ranged_indexes.d.ts │ │ │ ├── result_set.d.ts │ │ │ └── unique_index.d.ts │ │ ├── memory-storage │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── memory_storage.d.ts │ │ └── partitioning-adapter │ │ └── src │ │ ├── index.d.ts │ │ └── partitioning_adapter.d.ts │ └── partitioning-adapter │ ├── lokidb.partitioning-adapter.js │ ├── lokidb.partitioning-adapter.js.map │ ├── lokidb.partitioning-adapter.min.js │ └── types │ ├── common │ ├── plugin.d.ts │ └── types.d.ts │ ├── fs-storage │ └── src │ │ ├── fs_storage.d.ts │ │ └── index.d.ts │ ├── full-text-search-language-de │ └── src │ │ ├── german_analyzer.d.ts │ │ └── index.d.ts │ ├── full-text-search-language-en │ └── src │ │ ├── english_analyzer.d.ts │ │ └── index.d.ts │ ├── full-text-search-language │ └── src │ │ ├── index.d.ts │ │ └── language.d.ts │ ├── full-text-search │ └── src │ │ ├── analyzer │ │ ├── analyzer.d.ts │ │ ├── character_filter.d.ts │ │ ├── token_filter.d.ts │ │ └── tokenizer.d.ts │ │ ├── full_text_search.d.ts │ │ ├── fuzzy │ │ ├── automaton.d.ts │ │ ├── lev1t_parametric_description.d.ts │ │ ├── lev2t_parametric_description.d.ts │ │ ├── levenshtein_automata.d.ts │ │ ├── long.d.ts │ │ ├── parametric_description.d.ts │ │ └── run_automaton.d.ts │ │ ├── index.d.ts │ │ ├── index_searcher.d.ts │ │ ├── inverted_index.d.ts │ │ ├── query_types.d.ts │ │ └── scorer.d.ts │ ├── indexed-storage │ └── src │ │ ├── index.d.ts │ │ └── indexed_storage.d.ts │ ├── local-storage │ └── src │ │ ├── index.d.ts │ │ └── local_storage.d.ts │ ├── loki │ └── src │ │ ├── avl_index.d.ts │ │ ├── clone.d.ts │ │ ├── collection.d.ts │ │ ├── comparators.d.ts │ │ ├── dynamic_view.d.ts │ │ ├── event_emitter.d.ts │ │ ├── index.d.ts │ │ ├── loki.d.ts │ │ ├── operator_packages.d.ts │ │ ├── ranged_indexes.d.ts │ │ ├── result_set.d.ts │ │ └── unique_index.d.ts │ ├── memory-storage │ └── src │ │ ├── index.d.ts │ │ └── memory_storage.d.ts │ └── partitioning-adapter │ └── src │ ├── index.d.ts │ └── partitioning_adapter.d.ts ├── docs ├── comparators.md ├── css │ ├── codemirror │ │ ├── codemirror.css │ │ └── foldgutter.css │ └── javascript_editor.css ├── index.md ├── js │ ├── codemirror │ │ ├── addon │ │ │ ├── edit │ │ │ │ └── matchbrackets.js │ │ │ └── fold │ │ │ │ ├── brace-fold.js │ │ │ │ ├── foldcode.js │ │ │ │ └── foldgutter.js │ │ ├── lib │ │ │ └── codemirror.js │ │ └── mode │ │ │ └── javascript │ │ │ └── javascript.js │ ├── gitter.js │ └── javascript_editor.js ├── operator_packages.md └── ranged_indexes.md ├── integration ├── .gitignore ├── config │ ├── jasmine.json │ ├── karma.amd.config.js │ └── karma.browser.config.js ├── package.json ├── scripts │ └── install_lokidb.ts └── spec │ ├── generic │ ├── full-text-search-language-de.spec.js │ ├── full-text-search-language-en.spec.js │ ├── full-text-search-language.spec.js │ ├── full-text-search.spec.js │ ├── loki.spec.js │ ├── memory-storage.spec.js │ └── partitioning-adapter.spec.js │ ├── helper │ └── integration.helper.js │ ├── node │ └── node-storage.spec.js │ └── web │ ├── indexed-storage.spec.js │ └── local-storage.spec.js ├── mkdocs.yml ├── package.json ├── packages ├── common │ ├── plugin.ts │ └── types.ts ├── fs-storage │ ├── package.json │ ├── spec │ │ └── node │ │ │ └── fs_storage.spec.ts │ ├── src │ │ ├── fs_storage.ts │ │ └── index.ts │ └── webpack.config.js ├── full-text-search-language-de │ ├── package.json │ ├── spec │ │ └── generic │ │ │ └── german_analyzer.spec.ts │ ├── src │ │ ├── german_analyzer.ts │ │ └── index.ts │ └── webpack.config.js ├── full-text-search-language-en │ ├── package.json │ ├── spec │ │ └── generic │ │ │ └── english_analyzer.spec.ts │ ├── src │ │ ├── english_analyzer.ts │ │ └── index.ts │ └── webpack.config.js ├── full-text-search-language │ ├── package.json │ ├── spec │ │ └── helper │ │ │ └── create_lanuage_test.helper.ts │ ├── src │ │ ├── index.ts │ │ └── language.ts │ └── webpack.config.js ├── full-text-search │ ├── package.json │ ├── spec │ │ ├── generic │ │ │ ├── analyzer │ │ │ │ ├── character_filter.spec.ts │ │ │ │ ├── token_filter.spec.ts │ │ │ │ └── tokenizer.spec.ts │ │ │ ├── full_text_search.spec.ts │ │ │ ├── inverted_index.spec.ts │ │ │ └── search │ │ │ │ ├── fuzzy.spec.ts │ │ │ │ └── wildcard.spec.ts │ │ └── node │ │ │ ├── MOCK_DATA.ts │ │ │ ├── QUERIES.ts │ │ │ └── elasticsearch.spec.ts │ ├── src │ │ ├── analyzer │ │ │ ├── analyzer.ts │ │ │ ├── character_filter.ts │ │ │ ├── token_filter.ts │ │ │ └── tokenizer.ts │ │ ├── full_text_search.ts │ │ ├── fuzzy │ │ │ ├── automaton.ts │ │ │ ├── lev1t_parametric_description.ts │ │ │ ├── lev2t_parametric_description.ts │ │ │ ├── levenshtein_automata.ts │ │ │ ├── long.ts │ │ │ ├── parametric_description.ts │ │ │ └── run_automaton.ts │ │ ├── index.ts │ │ ├── index_searcher.ts │ │ ├── inverted_index.ts │ │ ├── query_types.ts │ │ └── scorer.ts │ └── webpack.config.js ├── indexed-storage │ ├── package.json │ ├── spec │ │ └── web │ │ │ └── indexed_storage.spec.ts │ ├── src │ │ ├── index.ts │ │ └── indexed_storage.ts │ └── webpack.config.js ├── local-storage │ ├── package.json │ ├── spec │ │ └── web │ │ │ └── local_storage.spec.ts │ ├── src │ │ ├── index.ts │ │ └── local_storage.ts │ └── webpack.config.js ├── loki │ ├── package.json │ ├── spec │ │ └── generic │ │ │ ├── avl-index.spec.ts │ │ │ ├── changesApi.spec.ts │ │ │ ├── cloning.spec.ts │ │ │ ├── collection.spec.ts │ │ │ ├── comparators.spec.ts │ │ │ ├── dynamic_view.spec.ts │ │ │ ├── eventEmitter.spec.ts │ │ │ ├── joins.spec.ts │ │ │ ├── operator_packages.spec.ts │ │ │ ├── ops.spec.ts │ │ │ ├── persistence.spec.ts │ │ │ ├── remove.spec.ts │ │ │ ├── sortingIndexing.spec.ts │ │ │ ├── stage.spec.ts │ │ │ ├── stats.spec.ts │ │ │ ├── test.spec.ts │ │ │ ├── transforms.spec.ts │ │ │ ├── typed.spec.ts │ │ │ └── unique.spec.ts │ ├── src │ │ ├── avl_index.ts │ │ ├── clone.ts │ │ ├── collection.ts │ │ ├── comparators.ts │ │ ├── dynamic_view.ts │ │ ├── event_emitter.ts │ │ ├── index.ts │ │ ├── loki.ts │ │ ├── operator_packages.ts │ │ ├── ranged_indexes.ts │ │ ├── result_set.ts │ │ ├── uml.png │ │ └── unique_index.ts │ └── webpack.config.js ├── memory-storage │ ├── package.json │ ├── spec │ │ └── generic │ │ │ └── memory_storage.spec.ts │ ├── src │ │ ├── index.ts │ │ └── memory_storage.ts │ └── webpack.config.js └── partitioning-adapter │ ├── package.json │ ├── spec │ └── generic │ │ └── partitioning.spec.ts │ ├── src │ ├── index.ts │ └── partitioning_adapter.ts │ └── webpack.config.js ├── scripts ├── build.ts ├── common.ts └── deploy.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/DEVELOPER.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/benchmark/benchmark.js -------------------------------------------------------------------------------- /benchmark/benchmark_indexes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/benchmark/benchmark_indexes.js -------------------------------------------------------------------------------- /config/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/config/jasmine.json -------------------------------------------------------------------------------- /config/karma.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/config/karma.config.js -------------------------------------------------------------------------------- /config/nycrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/config/nycrc.json -------------------------------------------------------------------------------- /config/nycrc.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/config/nycrc.node.json -------------------------------------------------------------------------------- /config/tsconfig.tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/config/tsconfig.tslint.json -------------------------------------------------------------------------------- /config/tsconfig.webpack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/config/tsconfig.webpack.json -------------------------------------------------------------------------------- /config/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/config/tslint.json -------------------------------------------------------------------------------- /config/webpack-config-creator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/config/webpack-config-creator.js -------------------------------------------------------------------------------- /dist/packages/fs-storage/lokidb.fs-storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/lokidb.fs-storage.js -------------------------------------------------------------------------------- /dist/packages/fs-storage/lokidb.fs-storage.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/lokidb.fs-storage.js.map -------------------------------------------------------------------------------- /dist/packages/fs-storage/lokidb.fs-storage.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/lokidb.fs-storage.min.js -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/common/plugin.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @hidden 3 | */ 4 | export declare const PLUGINS: void; 5 | -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/common/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/common/types.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/fs-storage/src/fs_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/fs-storage/src/fs_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/fs-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/fs-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/full-text-search-language-de/src/german_analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/full-text-search-language-de/src/german_analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/full-text-search-language-de/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/full-text-search-language-de/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/full-text-search-language-en/src/english_analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/full-text-search-language-en/src/english_analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/full-text-search-language-en/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/full-text-search-language-en/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/full-text-search-language/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/full-text-search-language/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/full-text-search-language/src/language.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/full-text-search-language/src/language.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/full-text-search/src/analyzer/analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/full-text-search/src/analyzer/analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/full-text-search/src/analyzer/character_filter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/full-text-search/src/analyzer/character_filter.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/full-text-search/src/analyzer/token_filter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/full-text-search/src/analyzer/token_filter.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/full-text-search/src/analyzer/tokenizer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/full-text-search/src/analyzer/tokenizer.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/full-text-search/src/full_text_search.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/full-text-search/src/full_text_search.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/full-text-search/src/fuzzy/automaton.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/full-text-search/src/fuzzy/automaton.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/full-text-search/src/fuzzy/lev1t_parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/full-text-search/src/fuzzy/lev1t_parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/full-text-search/src/fuzzy/lev2t_parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/full-text-search/src/fuzzy/lev2t_parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/full-text-search/src/fuzzy/levenshtein_automata.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/full-text-search/src/fuzzy/levenshtein_automata.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/full-text-search/src/fuzzy/long.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/full-text-search/src/fuzzy/long.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/full-text-search/src/fuzzy/parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/full-text-search/src/fuzzy/parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/full-text-search/src/fuzzy/run_automaton.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/full-text-search/src/fuzzy/run_automaton.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/full-text-search/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/full-text-search/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/full-text-search/src/index_searcher.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/full-text-search/src/index_searcher.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/full-text-search/src/inverted_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/full-text-search/src/inverted_index.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/full-text-search/src/query_types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/full-text-search/src/query_types.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/full-text-search/src/scorer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/full-text-search/src/scorer.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/indexed-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/indexed-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/indexed-storage/src/indexed_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/indexed-storage/src/indexed_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/local-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/local-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/local-storage/src/local_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/local-storage/src/local_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/loki/src/avl_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/loki/src/avl_index.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/loki/src/clone.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/loki/src/clone.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/loki/src/collection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/loki/src/collection.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/loki/src/comparators.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/loki/src/comparators.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/loki/src/dynamic_view.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/loki/src/dynamic_view.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/loki/src/event_emitter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/loki/src/event_emitter.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/loki/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/loki/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/loki/src/loki.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/loki/src/loki.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/loki/src/operator_packages.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/loki/src/operator_packages.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/loki/src/ranged_indexes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/loki/src/ranged_indexes.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/loki/src/result_set.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/loki/src/result_set.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/loki/src/unique_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/loki/src/unique_index.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/memory-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/memory-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/memory-storage/src/memory_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/memory-storage/src/memory_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/partitioning-adapter/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/partitioning-adapter/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/fs-storage/types/partitioning-adapter/src/partitioning_adapter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/fs-storage/types/partitioning-adapter/src/partitioning_adapter.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/lokidb.full-text-search-language-de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/lokidb.full-text-search-language-de.js -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/lokidb.full-text-search-language-de.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/lokidb.full-text-search-language-de.js.map -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/lokidb.full-text-search-language-de.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/lokidb.full-text-search-language-de.min.js -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/common/plugin.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @hidden 3 | */ 4 | export declare const PLUGINS: void; 5 | -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/common/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/common/types.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/fs-storage/src/fs_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/fs-storage/src/fs_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/fs-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/fs-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/full-text-search-language-de/src/german_analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/full-text-search-language-de/src/german_analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/full-text-search-language-de/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/full-text-search-language-de/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/full-text-search-language-en/src/english_analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/full-text-search-language-en/src/english_analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/full-text-search-language-en/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/full-text-search-language-en/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/full-text-search-language/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/full-text-search-language/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/full-text-search-language/src/language.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/full-text-search-language/src/language.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/full-text-search/src/analyzer/analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/full-text-search/src/analyzer/analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/full-text-search/src/analyzer/character_filter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/full-text-search/src/analyzer/character_filter.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/full-text-search/src/analyzer/token_filter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/full-text-search/src/analyzer/token_filter.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/full-text-search/src/analyzer/tokenizer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/full-text-search/src/analyzer/tokenizer.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/full-text-search/src/full_text_search.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/full-text-search/src/full_text_search.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/full-text-search/src/fuzzy/automaton.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/full-text-search/src/fuzzy/automaton.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/full-text-search/src/fuzzy/lev1t_parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/full-text-search/src/fuzzy/lev1t_parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/full-text-search/src/fuzzy/lev2t_parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/full-text-search/src/fuzzy/lev2t_parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/full-text-search/src/fuzzy/levenshtein_automata.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/full-text-search/src/fuzzy/levenshtein_automata.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/full-text-search/src/fuzzy/long.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/full-text-search/src/fuzzy/long.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/full-text-search/src/fuzzy/parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/full-text-search/src/fuzzy/parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/full-text-search/src/fuzzy/run_automaton.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/full-text-search/src/fuzzy/run_automaton.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/full-text-search/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/full-text-search/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/full-text-search/src/index_searcher.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/full-text-search/src/index_searcher.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/full-text-search/src/inverted_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/full-text-search/src/inverted_index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/full-text-search/src/query_types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/full-text-search/src/query_types.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/full-text-search/src/scorer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/full-text-search/src/scorer.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/indexed-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/indexed-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/indexed-storage/src/indexed_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/indexed-storage/src/indexed_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/local-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/local-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/local-storage/src/local_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/local-storage/src/local_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/loki/src/avl_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/loki/src/avl_index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/loki/src/clone.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/loki/src/clone.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/loki/src/collection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/loki/src/collection.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/loki/src/comparators.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/loki/src/comparators.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/loki/src/dynamic_view.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/loki/src/dynamic_view.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/loki/src/event_emitter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/loki/src/event_emitter.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/loki/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/loki/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/loki/src/loki.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/loki/src/loki.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/loki/src/operator_packages.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/loki/src/operator_packages.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/loki/src/ranged_indexes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/loki/src/ranged_indexes.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/loki/src/result_set.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/loki/src/result_set.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/loki/src/unique_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/loki/src/unique_index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/memory-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/memory-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/memory-storage/src/memory_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/memory-storage/src/memory_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/partitioning-adapter/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/partitioning-adapter/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-de/types/partitioning-adapter/src/partitioning_adapter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-de/types/partitioning-adapter/src/partitioning_adapter.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/lokidb.full-text-search-language-en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/lokidb.full-text-search-language-en.js -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/lokidb.full-text-search-language-en.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/lokidb.full-text-search-language-en.js.map -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/lokidb.full-text-search-language-en.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/lokidb.full-text-search-language-en.min.js -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/common/plugin.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @hidden 3 | */ 4 | export declare const PLUGINS: void; 5 | -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/common/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/common/types.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/fs-storage/src/fs_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/fs-storage/src/fs_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/fs-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/fs-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/full-text-search-language-de/src/german_analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/full-text-search-language-de/src/german_analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/full-text-search-language-de/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/full-text-search-language-de/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/full-text-search-language-en/src/english_analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/full-text-search-language-en/src/english_analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/full-text-search-language-en/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/full-text-search-language-en/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/full-text-search-language/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/full-text-search-language/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/full-text-search-language/src/language.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/full-text-search-language/src/language.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/full-text-search/src/analyzer/analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/full-text-search/src/analyzer/analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/full-text-search/src/analyzer/character_filter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/full-text-search/src/analyzer/character_filter.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/full-text-search/src/analyzer/token_filter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/full-text-search/src/analyzer/token_filter.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/full-text-search/src/analyzer/tokenizer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/full-text-search/src/analyzer/tokenizer.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/full-text-search/src/full_text_search.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/full-text-search/src/full_text_search.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/full-text-search/src/fuzzy/automaton.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/full-text-search/src/fuzzy/automaton.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/full-text-search/src/fuzzy/lev1t_parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/full-text-search/src/fuzzy/lev1t_parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/full-text-search/src/fuzzy/lev2t_parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/full-text-search/src/fuzzy/lev2t_parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/full-text-search/src/fuzzy/levenshtein_automata.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/full-text-search/src/fuzzy/levenshtein_automata.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/full-text-search/src/fuzzy/long.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/full-text-search/src/fuzzy/long.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/full-text-search/src/fuzzy/parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/full-text-search/src/fuzzy/parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/full-text-search/src/fuzzy/run_automaton.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/full-text-search/src/fuzzy/run_automaton.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/full-text-search/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/full-text-search/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/full-text-search/src/index_searcher.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/full-text-search/src/index_searcher.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/full-text-search/src/inverted_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/full-text-search/src/inverted_index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/full-text-search/src/query_types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/full-text-search/src/query_types.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/full-text-search/src/scorer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/full-text-search/src/scorer.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/indexed-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/indexed-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/indexed-storage/src/indexed_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/indexed-storage/src/indexed_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/local-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/local-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/local-storage/src/local_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/local-storage/src/local_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/loki/src/avl_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/loki/src/avl_index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/loki/src/clone.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/loki/src/clone.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/loki/src/collection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/loki/src/collection.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/loki/src/comparators.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/loki/src/comparators.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/loki/src/dynamic_view.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/loki/src/dynamic_view.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/loki/src/event_emitter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/loki/src/event_emitter.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/loki/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/loki/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/loki/src/loki.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/loki/src/loki.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/loki/src/operator_packages.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/loki/src/operator_packages.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/loki/src/ranged_indexes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/loki/src/ranged_indexes.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/loki/src/result_set.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/loki/src/result_set.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/loki/src/unique_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/loki/src/unique_index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/memory-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/memory-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/memory-storage/src/memory_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/memory-storage/src/memory_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/partitioning-adapter/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/partitioning-adapter/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language-en/types/partitioning-adapter/src/partitioning_adapter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language-en/types/partitioning-adapter/src/partitioning_adapter.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/lokidb.full-text-search-language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/lokidb.full-text-search-language.js -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/lokidb.full-text-search-language.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/lokidb.full-text-search-language.js.map -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/lokidb.full-text-search-language.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/lokidb.full-text-search-language.min.js -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/common/plugin.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @hidden 3 | */ 4 | export declare const PLUGINS: void; 5 | -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/common/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/common/types.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/fs-storage/src/fs_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/fs-storage/src/fs_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/fs-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/fs-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/full-text-search-language-de/src/german_analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/full-text-search-language-de/src/german_analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/full-text-search-language-de/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/full-text-search-language-de/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/full-text-search-language-en/src/english_analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/full-text-search-language-en/src/english_analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/full-text-search-language-en/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/full-text-search-language-en/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/full-text-search-language/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/full-text-search-language/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/full-text-search-language/src/language.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/full-text-search-language/src/language.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/full-text-search/src/analyzer/analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/full-text-search/src/analyzer/analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/full-text-search/src/analyzer/character_filter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/full-text-search/src/analyzer/character_filter.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/full-text-search/src/analyzer/token_filter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/full-text-search/src/analyzer/token_filter.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/full-text-search/src/analyzer/tokenizer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/full-text-search/src/analyzer/tokenizer.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/full-text-search/src/full_text_search.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/full-text-search/src/full_text_search.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/full-text-search/src/fuzzy/automaton.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/full-text-search/src/fuzzy/automaton.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/full-text-search/src/fuzzy/lev1t_parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/full-text-search/src/fuzzy/lev1t_parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/full-text-search/src/fuzzy/lev2t_parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/full-text-search/src/fuzzy/lev2t_parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/full-text-search/src/fuzzy/levenshtein_automata.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/full-text-search/src/fuzzy/levenshtein_automata.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/full-text-search/src/fuzzy/long.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/full-text-search/src/fuzzy/long.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/full-text-search/src/fuzzy/parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/full-text-search/src/fuzzy/parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/full-text-search/src/fuzzy/run_automaton.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/full-text-search/src/fuzzy/run_automaton.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/full-text-search/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/full-text-search/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/full-text-search/src/index_searcher.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/full-text-search/src/index_searcher.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/full-text-search/src/inverted_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/full-text-search/src/inverted_index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/full-text-search/src/query_types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/full-text-search/src/query_types.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/full-text-search/src/scorer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/full-text-search/src/scorer.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/indexed-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/indexed-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/indexed-storage/src/indexed_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/indexed-storage/src/indexed_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/local-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/local-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/local-storage/src/local_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/local-storage/src/local_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/loki/src/avl_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/loki/src/avl_index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/loki/src/clone.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/loki/src/clone.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/loki/src/collection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/loki/src/collection.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/loki/src/comparators.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/loki/src/comparators.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/loki/src/dynamic_view.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/loki/src/dynamic_view.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/loki/src/event_emitter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/loki/src/event_emitter.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/loki/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/loki/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/loki/src/loki.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/loki/src/loki.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/loki/src/operator_packages.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/loki/src/operator_packages.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/loki/src/ranged_indexes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/loki/src/ranged_indexes.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/loki/src/result_set.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/loki/src/result_set.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/loki/src/unique_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/loki/src/unique_index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/memory-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/memory-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/memory-storage/src/memory_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/memory-storage/src/memory_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/partitioning-adapter/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/partitioning-adapter/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search-language/types/partitioning-adapter/src/partitioning_adapter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search-language/types/partitioning-adapter/src/partitioning_adapter.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/lokidb.full-text-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/lokidb.full-text-search.js -------------------------------------------------------------------------------- /dist/packages/full-text-search/lokidb.full-text-search.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/lokidb.full-text-search.js.map -------------------------------------------------------------------------------- /dist/packages/full-text-search/lokidb.full-text-search.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/lokidb.full-text-search.min.js -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/common/plugin.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @hidden 3 | */ 4 | export declare const PLUGINS: void; 5 | -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/common/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/common/types.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/fs-storage/src/fs_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/fs-storage/src/fs_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/fs-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/fs-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/full-text-search-language-de/src/german_analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/full-text-search-language-de/src/german_analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/full-text-search-language-de/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/full-text-search-language-de/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/full-text-search-language-en/src/english_analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/full-text-search-language-en/src/english_analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/full-text-search-language-en/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/full-text-search-language-en/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/full-text-search-language/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/full-text-search-language/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/full-text-search-language/src/language.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/full-text-search-language/src/language.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/full-text-search/src/analyzer/analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/full-text-search/src/analyzer/analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/full-text-search/src/analyzer/character_filter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/full-text-search/src/analyzer/character_filter.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/full-text-search/src/analyzer/token_filter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/full-text-search/src/analyzer/token_filter.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/full-text-search/src/analyzer/tokenizer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/full-text-search/src/analyzer/tokenizer.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/full-text-search/src/full_text_search.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/full-text-search/src/full_text_search.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/full-text-search/src/fuzzy/automaton.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/full-text-search/src/fuzzy/automaton.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/full-text-search/src/fuzzy/lev1t_parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/full-text-search/src/fuzzy/lev1t_parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/full-text-search/src/fuzzy/lev2t_parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/full-text-search/src/fuzzy/lev2t_parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/full-text-search/src/fuzzy/levenshtein_automata.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/full-text-search/src/fuzzy/levenshtein_automata.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/full-text-search/src/fuzzy/long.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/full-text-search/src/fuzzy/long.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/full-text-search/src/fuzzy/parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/full-text-search/src/fuzzy/parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/full-text-search/src/fuzzy/run_automaton.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/full-text-search/src/fuzzy/run_automaton.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/full-text-search/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/full-text-search/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/full-text-search/src/index_searcher.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/full-text-search/src/index_searcher.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/full-text-search/src/inverted_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/full-text-search/src/inverted_index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/full-text-search/src/query_types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/full-text-search/src/query_types.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/full-text-search/src/scorer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/full-text-search/src/scorer.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/indexed-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/indexed-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/indexed-storage/src/indexed_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/indexed-storage/src/indexed_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/local-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/local-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/local-storage/src/local_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/local-storage/src/local_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/loki/src/avl_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/loki/src/avl_index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/loki/src/clone.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/loki/src/clone.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/loki/src/collection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/loki/src/collection.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/loki/src/comparators.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/loki/src/comparators.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/loki/src/dynamic_view.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/loki/src/dynamic_view.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/loki/src/event_emitter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/loki/src/event_emitter.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/loki/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/loki/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/loki/src/loki.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/loki/src/loki.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/loki/src/operator_packages.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/loki/src/operator_packages.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/loki/src/ranged_indexes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/loki/src/ranged_indexes.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/loki/src/result_set.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/loki/src/result_set.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/loki/src/unique_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/loki/src/unique_index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/memory-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/memory-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/memory-storage/src/memory_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/memory-storage/src/memory_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/partitioning-adapter/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/partitioning-adapter/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/full-text-search/types/partitioning-adapter/src/partitioning_adapter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/full-text-search/types/partitioning-adapter/src/partitioning_adapter.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/lokidb.indexed-storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/lokidb.indexed-storage.js -------------------------------------------------------------------------------- /dist/packages/indexed-storage/lokidb.indexed-storage.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/lokidb.indexed-storage.js.map -------------------------------------------------------------------------------- /dist/packages/indexed-storage/lokidb.indexed-storage.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/lokidb.indexed-storage.min.js -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/common/plugin.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @hidden 3 | */ 4 | export declare const PLUGINS: void; 5 | -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/common/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/common/types.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/fs-storage/src/fs_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/fs-storage/src/fs_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/fs-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/fs-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/full-text-search-language-de/src/german_analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/full-text-search-language-de/src/german_analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/full-text-search-language-de/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/full-text-search-language-de/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/full-text-search-language-en/src/english_analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/full-text-search-language-en/src/english_analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/full-text-search-language-en/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/full-text-search-language-en/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/full-text-search-language/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/full-text-search-language/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/full-text-search-language/src/language.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/full-text-search-language/src/language.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/full-text-search/src/analyzer/analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/full-text-search/src/analyzer/analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/full-text-search/src/analyzer/character_filter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/full-text-search/src/analyzer/character_filter.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/full-text-search/src/analyzer/token_filter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/full-text-search/src/analyzer/token_filter.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/full-text-search/src/analyzer/tokenizer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/full-text-search/src/analyzer/tokenizer.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/full-text-search/src/full_text_search.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/full-text-search/src/full_text_search.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/full-text-search/src/fuzzy/automaton.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/full-text-search/src/fuzzy/automaton.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/full-text-search/src/fuzzy/lev1t_parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/full-text-search/src/fuzzy/lev1t_parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/full-text-search/src/fuzzy/lev2t_parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/full-text-search/src/fuzzy/lev2t_parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/full-text-search/src/fuzzy/levenshtein_automata.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/full-text-search/src/fuzzy/levenshtein_automata.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/full-text-search/src/fuzzy/long.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/full-text-search/src/fuzzy/long.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/full-text-search/src/fuzzy/parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/full-text-search/src/fuzzy/parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/full-text-search/src/fuzzy/run_automaton.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/full-text-search/src/fuzzy/run_automaton.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/full-text-search/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/full-text-search/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/full-text-search/src/index_searcher.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/full-text-search/src/index_searcher.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/full-text-search/src/inverted_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/full-text-search/src/inverted_index.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/full-text-search/src/query_types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/full-text-search/src/query_types.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/full-text-search/src/scorer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/full-text-search/src/scorer.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/indexed-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/indexed-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/indexed-storage/src/indexed_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/indexed-storage/src/indexed_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/local-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/local-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/local-storage/src/local_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/local-storage/src/local_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/loki/src/avl_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/loki/src/avl_index.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/loki/src/clone.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/loki/src/clone.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/loki/src/collection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/loki/src/collection.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/loki/src/comparators.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/loki/src/comparators.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/loki/src/dynamic_view.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/loki/src/dynamic_view.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/loki/src/event_emitter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/loki/src/event_emitter.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/loki/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/loki/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/loki/src/loki.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/loki/src/loki.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/loki/src/operator_packages.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/loki/src/operator_packages.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/loki/src/ranged_indexes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/loki/src/ranged_indexes.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/loki/src/result_set.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/loki/src/result_set.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/loki/src/unique_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/loki/src/unique_index.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/memory-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/memory-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/memory-storage/src/memory_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/memory-storage/src/memory_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/partitioning-adapter/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/partitioning-adapter/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/indexed-storage/types/partitioning-adapter/src/partitioning_adapter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/indexed-storage/types/partitioning-adapter/src/partitioning_adapter.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/lokidb.local-storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/lokidb.local-storage.js -------------------------------------------------------------------------------- /dist/packages/local-storage/lokidb.local-storage.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/lokidb.local-storage.js.map -------------------------------------------------------------------------------- /dist/packages/local-storage/lokidb.local-storage.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/lokidb.local-storage.min.js -------------------------------------------------------------------------------- /dist/packages/local-storage/types/common/plugin.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @hidden 3 | */ 4 | export declare const PLUGINS: void; 5 | -------------------------------------------------------------------------------- /dist/packages/local-storage/types/common/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/common/types.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/fs-storage/src/fs_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/fs-storage/src/fs_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/fs-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/fs-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/full-text-search-language-de/src/german_analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/full-text-search-language-de/src/german_analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/full-text-search-language-de/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/full-text-search-language-de/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/full-text-search-language-en/src/english_analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/full-text-search-language-en/src/english_analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/full-text-search-language-en/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/full-text-search-language-en/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/full-text-search-language/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/full-text-search-language/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/full-text-search-language/src/language.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/full-text-search-language/src/language.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/full-text-search/src/analyzer/analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/full-text-search/src/analyzer/analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/full-text-search/src/analyzer/character_filter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/full-text-search/src/analyzer/character_filter.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/full-text-search/src/analyzer/token_filter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/full-text-search/src/analyzer/token_filter.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/full-text-search/src/analyzer/tokenizer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/full-text-search/src/analyzer/tokenizer.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/full-text-search/src/full_text_search.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/full-text-search/src/full_text_search.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/full-text-search/src/fuzzy/automaton.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/full-text-search/src/fuzzy/automaton.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/full-text-search/src/fuzzy/lev1t_parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/full-text-search/src/fuzzy/lev1t_parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/full-text-search/src/fuzzy/lev2t_parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/full-text-search/src/fuzzy/lev2t_parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/full-text-search/src/fuzzy/levenshtein_automata.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/full-text-search/src/fuzzy/levenshtein_automata.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/full-text-search/src/fuzzy/long.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/full-text-search/src/fuzzy/long.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/full-text-search/src/fuzzy/parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/full-text-search/src/fuzzy/parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/full-text-search/src/fuzzy/run_automaton.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/full-text-search/src/fuzzy/run_automaton.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/full-text-search/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/full-text-search/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/full-text-search/src/index_searcher.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/full-text-search/src/index_searcher.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/full-text-search/src/inverted_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/full-text-search/src/inverted_index.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/full-text-search/src/query_types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/full-text-search/src/query_types.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/full-text-search/src/scorer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/full-text-search/src/scorer.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/indexed-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/indexed-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/indexed-storage/src/indexed_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/indexed-storage/src/indexed_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/local-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/local-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/local-storage/src/local_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/local-storage/src/local_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/loki/src/avl_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/loki/src/avl_index.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/loki/src/clone.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/loki/src/clone.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/loki/src/collection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/loki/src/collection.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/loki/src/comparators.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/loki/src/comparators.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/loki/src/dynamic_view.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/loki/src/dynamic_view.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/loki/src/event_emitter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/loki/src/event_emitter.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/loki/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/loki/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/loki/src/loki.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/loki/src/loki.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/loki/src/operator_packages.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/loki/src/operator_packages.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/loki/src/ranged_indexes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/loki/src/ranged_indexes.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/loki/src/result_set.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/loki/src/result_set.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/loki/src/unique_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/loki/src/unique_index.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/memory-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/memory-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/memory-storage/src/memory_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/memory-storage/src/memory_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/partitioning-adapter/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/partitioning-adapter/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/local-storage/types/partitioning-adapter/src/partitioning_adapter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/local-storage/types/partitioning-adapter/src/partitioning_adapter.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/lokidb.loki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/lokidb.loki.js -------------------------------------------------------------------------------- /dist/packages/loki/lokidb.loki.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/lokidb.loki.js.map -------------------------------------------------------------------------------- /dist/packages/loki/lokidb.loki.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/lokidb.loki.min.js -------------------------------------------------------------------------------- /dist/packages/loki/types/common/plugin.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @hidden 3 | */ 4 | export declare const PLUGINS: void; 5 | -------------------------------------------------------------------------------- /dist/packages/loki/types/common/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/common/types.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/fs-storage/src/fs_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/fs-storage/src/fs_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/fs-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/fs-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/full-text-search-language-de/src/german_analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/full-text-search-language-de/src/german_analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/full-text-search-language-de/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/full-text-search-language-de/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/full-text-search-language-en/src/english_analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/full-text-search-language-en/src/english_analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/full-text-search-language-en/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/full-text-search-language-en/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/full-text-search-language/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/full-text-search-language/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/full-text-search-language/src/language.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/full-text-search-language/src/language.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/full-text-search/src/analyzer/analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/full-text-search/src/analyzer/analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/full-text-search/src/analyzer/character_filter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/full-text-search/src/analyzer/character_filter.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/full-text-search/src/analyzer/token_filter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/full-text-search/src/analyzer/token_filter.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/full-text-search/src/analyzer/tokenizer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/full-text-search/src/analyzer/tokenizer.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/full-text-search/src/full_text_search.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/full-text-search/src/full_text_search.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/full-text-search/src/fuzzy/automaton.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/full-text-search/src/fuzzy/automaton.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/full-text-search/src/fuzzy/lev1t_parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/full-text-search/src/fuzzy/lev1t_parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/full-text-search/src/fuzzy/lev2t_parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/full-text-search/src/fuzzy/lev2t_parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/full-text-search/src/fuzzy/levenshtein_automata.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/full-text-search/src/fuzzy/levenshtein_automata.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/full-text-search/src/fuzzy/long.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/full-text-search/src/fuzzy/long.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/full-text-search/src/fuzzy/parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/full-text-search/src/fuzzy/parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/full-text-search/src/fuzzy/run_automaton.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/full-text-search/src/fuzzy/run_automaton.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/full-text-search/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/full-text-search/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/full-text-search/src/index_searcher.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/full-text-search/src/index_searcher.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/full-text-search/src/inverted_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/full-text-search/src/inverted_index.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/full-text-search/src/query_types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/full-text-search/src/query_types.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/full-text-search/src/scorer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/full-text-search/src/scorer.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/indexed-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/indexed-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/indexed-storage/src/indexed_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/indexed-storage/src/indexed_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/local-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/local-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/local-storage/src/local_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/local-storage/src/local_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/loki/src/avl_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/loki/src/avl_index.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/loki/src/clone.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/loki/src/clone.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/loki/src/collection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/loki/src/collection.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/loki/src/comparators.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/loki/src/comparators.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/loki/src/dynamic_view.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/loki/src/dynamic_view.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/loki/src/event_emitter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/loki/src/event_emitter.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/loki/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/loki/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/loki/src/loki.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/loki/src/loki.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/loki/src/operator_packages.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/loki/src/operator_packages.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/loki/src/ranged_indexes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/loki/src/ranged_indexes.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/loki/src/result_set.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/loki/src/result_set.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/loki/src/unique_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/loki/src/unique_index.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/memory-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/memory-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/memory-storage/src/memory_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/memory-storage/src/memory_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/partitioning-adapter/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/partitioning-adapter/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/loki/types/partitioning-adapter/src/partitioning_adapter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/loki/types/partitioning-adapter/src/partitioning_adapter.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/lokidb.memory-storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/lokidb.memory-storage.js -------------------------------------------------------------------------------- /dist/packages/memory-storage/lokidb.memory-storage.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/lokidb.memory-storage.js.map -------------------------------------------------------------------------------- /dist/packages/memory-storage/lokidb.memory-storage.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/lokidb.memory-storage.min.js -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/common/plugin.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @hidden 3 | */ 4 | export declare const PLUGINS: void; 5 | -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/common/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/common/types.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/fs-storage/src/fs_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/fs-storage/src/fs_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/fs-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/fs-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/full-text-search-language-de/src/german_analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/full-text-search-language-de/src/german_analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/full-text-search-language-de/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/full-text-search-language-de/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/full-text-search-language-en/src/english_analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/full-text-search-language-en/src/english_analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/full-text-search-language-en/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/full-text-search-language-en/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/full-text-search-language/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/full-text-search-language/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/full-text-search-language/src/language.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/full-text-search-language/src/language.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/full-text-search/src/analyzer/analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/full-text-search/src/analyzer/analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/full-text-search/src/analyzer/character_filter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/full-text-search/src/analyzer/character_filter.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/full-text-search/src/analyzer/token_filter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/full-text-search/src/analyzer/token_filter.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/full-text-search/src/analyzer/tokenizer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/full-text-search/src/analyzer/tokenizer.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/full-text-search/src/full_text_search.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/full-text-search/src/full_text_search.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/full-text-search/src/fuzzy/automaton.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/full-text-search/src/fuzzy/automaton.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/full-text-search/src/fuzzy/lev1t_parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/full-text-search/src/fuzzy/lev1t_parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/full-text-search/src/fuzzy/lev2t_parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/full-text-search/src/fuzzy/lev2t_parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/full-text-search/src/fuzzy/levenshtein_automata.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/full-text-search/src/fuzzy/levenshtein_automata.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/full-text-search/src/fuzzy/long.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/full-text-search/src/fuzzy/long.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/full-text-search/src/fuzzy/parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/full-text-search/src/fuzzy/parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/full-text-search/src/fuzzy/run_automaton.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/full-text-search/src/fuzzy/run_automaton.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/full-text-search/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/full-text-search/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/full-text-search/src/index_searcher.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/full-text-search/src/index_searcher.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/full-text-search/src/inverted_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/full-text-search/src/inverted_index.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/full-text-search/src/query_types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/full-text-search/src/query_types.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/full-text-search/src/scorer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/full-text-search/src/scorer.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/indexed-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/indexed-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/indexed-storage/src/indexed_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/indexed-storage/src/indexed_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/local-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/local-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/local-storage/src/local_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/local-storage/src/local_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/loki/src/avl_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/loki/src/avl_index.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/loki/src/clone.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/loki/src/clone.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/loki/src/collection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/loki/src/collection.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/loki/src/comparators.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/loki/src/comparators.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/loki/src/dynamic_view.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/loki/src/dynamic_view.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/loki/src/event_emitter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/loki/src/event_emitter.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/loki/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/loki/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/loki/src/loki.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/loki/src/loki.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/loki/src/operator_packages.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/loki/src/operator_packages.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/loki/src/ranged_indexes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/loki/src/ranged_indexes.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/loki/src/result_set.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/loki/src/result_set.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/loki/src/unique_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/loki/src/unique_index.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/memory-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/memory-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/memory-storage/src/memory_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/memory-storage/src/memory_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/partitioning-adapter/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/partitioning-adapter/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/memory-storage/types/partitioning-adapter/src/partitioning_adapter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/memory-storage/types/partitioning-adapter/src/partitioning_adapter.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/lokidb.partitioning-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/lokidb.partitioning-adapter.js -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/lokidb.partitioning-adapter.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/lokidb.partitioning-adapter.js.map -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/lokidb.partitioning-adapter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/lokidb.partitioning-adapter.min.js -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/common/plugin.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @hidden 3 | */ 4 | export declare const PLUGINS: void; 5 | -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/common/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/common/types.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/fs-storage/src/fs_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/fs-storage/src/fs_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/fs-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/fs-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/full-text-search-language-de/src/german_analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/full-text-search-language-de/src/german_analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/full-text-search-language-de/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/full-text-search-language-de/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/full-text-search-language-en/src/english_analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/full-text-search-language-en/src/english_analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/full-text-search-language-en/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/full-text-search-language-en/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/full-text-search-language/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/full-text-search-language/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/full-text-search-language/src/language.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/full-text-search-language/src/language.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/full-text-search/src/analyzer/analyzer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/full-text-search/src/analyzer/analyzer.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/full-text-search/src/analyzer/character_filter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/full-text-search/src/analyzer/character_filter.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/full-text-search/src/analyzer/token_filter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/full-text-search/src/analyzer/token_filter.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/full-text-search/src/analyzer/tokenizer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/full-text-search/src/analyzer/tokenizer.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/full-text-search/src/full_text_search.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/full-text-search/src/full_text_search.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/full-text-search/src/fuzzy/automaton.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/full-text-search/src/fuzzy/automaton.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/full-text-search/src/fuzzy/lev1t_parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/full-text-search/src/fuzzy/lev1t_parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/full-text-search/src/fuzzy/lev2t_parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/full-text-search/src/fuzzy/lev2t_parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/full-text-search/src/fuzzy/levenshtein_automata.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/full-text-search/src/fuzzy/levenshtein_automata.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/full-text-search/src/fuzzy/long.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/full-text-search/src/fuzzy/long.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/full-text-search/src/fuzzy/parametric_description.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/full-text-search/src/fuzzy/parametric_description.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/full-text-search/src/fuzzy/run_automaton.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/full-text-search/src/fuzzy/run_automaton.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/full-text-search/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/full-text-search/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/full-text-search/src/index_searcher.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/full-text-search/src/index_searcher.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/full-text-search/src/inverted_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/full-text-search/src/inverted_index.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/full-text-search/src/query_types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/full-text-search/src/query_types.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/full-text-search/src/scorer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/full-text-search/src/scorer.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/indexed-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/indexed-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/indexed-storage/src/indexed_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/indexed-storage/src/indexed_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/local-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/local-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/local-storage/src/local_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/local-storage/src/local_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/loki/src/avl_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/loki/src/avl_index.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/loki/src/clone.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/loki/src/clone.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/loki/src/collection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/loki/src/collection.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/loki/src/comparators.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/loki/src/comparators.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/loki/src/dynamic_view.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/loki/src/dynamic_view.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/loki/src/event_emitter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/loki/src/event_emitter.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/loki/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/loki/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/loki/src/loki.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/loki/src/loki.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/loki/src/operator_packages.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/loki/src/operator_packages.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/loki/src/ranged_indexes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/loki/src/ranged_indexes.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/loki/src/result_set.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/loki/src/result_set.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/loki/src/unique_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/loki/src/unique_index.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/memory-storage/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/memory-storage/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/memory-storage/src/memory_storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/memory-storage/src/memory_storage.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/partitioning-adapter/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/partitioning-adapter/src/index.d.ts -------------------------------------------------------------------------------- /dist/packages/partitioning-adapter/types/partitioning-adapter/src/partitioning_adapter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/dist/packages/partitioning-adapter/types/partitioning-adapter/src/partitioning_adapter.d.ts -------------------------------------------------------------------------------- /docs/comparators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/docs/comparators.md -------------------------------------------------------------------------------- /docs/css/codemirror/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/docs/css/codemirror/codemirror.css -------------------------------------------------------------------------------- /docs/css/codemirror/foldgutter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/docs/css/codemirror/foldgutter.css -------------------------------------------------------------------------------- /docs/css/javascript_editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/docs/css/javascript_editor.css -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/js/codemirror/addon/edit/matchbrackets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/docs/js/codemirror/addon/edit/matchbrackets.js -------------------------------------------------------------------------------- /docs/js/codemirror/addon/fold/brace-fold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/docs/js/codemirror/addon/fold/brace-fold.js -------------------------------------------------------------------------------- /docs/js/codemirror/addon/fold/foldcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/docs/js/codemirror/addon/fold/foldcode.js -------------------------------------------------------------------------------- /docs/js/codemirror/addon/fold/foldgutter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/docs/js/codemirror/addon/fold/foldgutter.js -------------------------------------------------------------------------------- /docs/js/codemirror/lib/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/docs/js/codemirror/lib/codemirror.js -------------------------------------------------------------------------------- /docs/js/codemirror/mode/javascript/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/docs/js/codemirror/mode/javascript/javascript.js -------------------------------------------------------------------------------- /docs/js/gitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/docs/js/gitter.js -------------------------------------------------------------------------------- /docs/js/javascript_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/docs/js/javascript_editor.js -------------------------------------------------------------------------------- /docs/operator_packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/docs/operator_packages.md -------------------------------------------------------------------------------- /docs/ranged_indexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/docs/ranged_indexes.md -------------------------------------------------------------------------------- /integration/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | package-lock.json 4 | -------------------------------------------------------------------------------- /integration/config/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/integration/config/jasmine.json -------------------------------------------------------------------------------- /integration/config/karma.amd.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/integration/config/karma.amd.config.js -------------------------------------------------------------------------------- /integration/config/karma.browser.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/integration/config/karma.browser.config.js -------------------------------------------------------------------------------- /integration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/integration/package.json -------------------------------------------------------------------------------- /integration/scripts/install_lokidb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/integration/scripts/install_lokidb.ts -------------------------------------------------------------------------------- /integration/spec/generic/full-text-search-language-de.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/integration/spec/generic/full-text-search-language-de.spec.js -------------------------------------------------------------------------------- /integration/spec/generic/full-text-search-language-en.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/integration/spec/generic/full-text-search-language-en.spec.js -------------------------------------------------------------------------------- /integration/spec/generic/full-text-search-language.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/integration/spec/generic/full-text-search-language.spec.js -------------------------------------------------------------------------------- /integration/spec/generic/full-text-search.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/integration/spec/generic/full-text-search.spec.js -------------------------------------------------------------------------------- /integration/spec/generic/loki.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/integration/spec/generic/loki.spec.js -------------------------------------------------------------------------------- /integration/spec/generic/memory-storage.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/integration/spec/generic/memory-storage.spec.js -------------------------------------------------------------------------------- /integration/spec/generic/partitioning-adapter.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/integration/spec/generic/partitioning-adapter.spec.js -------------------------------------------------------------------------------- /integration/spec/helper/integration.helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/integration/spec/helper/integration.helper.js -------------------------------------------------------------------------------- /integration/spec/node/node-storage.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/integration/spec/node/node-storage.spec.js -------------------------------------------------------------------------------- /integration/spec/web/indexed-storage.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/integration/spec/web/indexed-storage.spec.js -------------------------------------------------------------------------------- /integration/spec/web/local-storage.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/integration/spec/web/local-storage.spec.js -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/package.json -------------------------------------------------------------------------------- /packages/common/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/common/plugin.ts -------------------------------------------------------------------------------- /packages/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/common/types.ts -------------------------------------------------------------------------------- /packages/fs-storage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/fs-storage/package.json -------------------------------------------------------------------------------- /packages/fs-storage/spec/node/fs_storage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/fs-storage/spec/node/fs_storage.spec.ts -------------------------------------------------------------------------------- /packages/fs-storage/src/fs_storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/fs-storage/src/fs_storage.ts -------------------------------------------------------------------------------- /packages/fs-storage/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/fs-storage/src/index.ts -------------------------------------------------------------------------------- /packages/fs-storage/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/fs-storage/webpack.config.js -------------------------------------------------------------------------------- /packages/full-text-search-language-de/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search-language-de/package.json -------------------------------------------------------------------------------- /packages/full-text-search-language-de/spec/generic/german_analyzer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search-language-de/spec/generic/german_analyzer.spec.ts -------------------------------------------------------------------------------- /packages/full-text-search-language-de/src/german_analyzer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search-language-de/src/german_analyzer.ts -------------------------------------------------------------------------------- /packages/full-text-search-language-de/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search-language-de/src/index.ts -------------------------------------------------------------------------------- /packages/full-text-search-language-de/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search-language-de/webpack.config.js -------------------------------------------------------------------------------- /packages/full-text-search-language-en/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search-language-en/package.json -------------------------------------------------------------------------------- /packages/full-text-search-language-en/spec/generic/english_analyzer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search-language-en/spec/generic/english_analyzer.spec.ts -------------------------------------------------------------------------------- /packages/full-text-search-language-en/src/english_analyzer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search-language-en/src/english_analyzer.ts -------------------------------------------------------------------------------- /packages/full-text-search-language-en/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search-language-en/src/index.ts -------------------------------------------------------------------------------- /packages/full-text-search-language-en/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search-language-en/webpack.config.js -------------------------------------------------------------------------------- /packages/full-text-search-language/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search-language/package.json -------------------------------------------------------------------------------- /packages/full-text-search-language/spec/helper/create_lanuage_test.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search-language/spec/helper/create_lanuage_test.helper.ts -------------------------------------------------------------------------------- /packages/full-text-search-language/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search-language/src/index.ts -------------------------------------------------------------------------------- /packages/full-text-search-language/src/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search-language/src/language.ts -------------------------------------------------------------------------------- /packages/full-text-search-language/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search-language/webpack.config.js -------------------------------------------------------------------------------- /packages/full-text-search/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/package.json -------------------------------------------------------------------------------- /packages/full-text-search/spec/generic/analyzer/character_filter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/spec/generic/analyzer/character_filter.spec.ts -------------------------------------------------------------------------------- /packages/full-text-search/spec/generic/analyzer/token_filter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/spec/generic/analyzer/token_filter.spec.ts -------------------------------------------------------------------------------- /packages/full-text-search/spec/generic/analyzer/tokenizer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/spec/generic/analyzer/tokenizer.spec.ts -------------------------------------------------------------------------------- /packages/full-text-search/spec/generic/full_text_search.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/spec/generic/full_text_search.spec.ts -------------------------------------------------------------------------------- /packages/full-text-search/spec/generic/inverted_index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/spec/generic/inverted_index.spec.ts -------------------------------------------------------------------------------- /packages/full-text-search/spec/generic/search/fuzzy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/spec/generic/search/fuzzy.spec.ts -------------------------------------------------------------------------------- /packages/full-text-search/spec/generic/search/wildcard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/spec/generic/search/wildcard.spec.ts -------------------------------------------------------------------------------- /packages/full-text-search/spec/node/MOCK_DATA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/spec/node/MOCK_DATA.ts -------------------------------------------------------------------------------- /packages/full-text-search/spec/node/QUERIES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/spec/node/QUERIES.ts -------------------------------------------------------------------------------- /packages/full-text-search/spec/node/elasticsearch.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/spec/node/elasticsearch.spec.ts -------------------------------------------------------------------------------- /packages/full-text-search/src/analyzer/analyzer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/src/analyzer/analyzer.ts -------------------------------------------------------------------------------- /packages/full-text-search/src/analyzer/character_filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/src/analyzer/character_filter.ts -------------------------------------------------------------------------------- /packages/full-text-search/src/analyzer/token_filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/src/analyzer/token_filter.ts -------------------------------------------------------------------------------- /packages/full-text-search/src/analyzer/tokenizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/src/analyzer/tokenizer.ts -------------------------------------------------------------------------------- /packages/full-text-search/src/full_text_search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/src/full_text_search.ts -------------------------------------------------------------------------------- /packages/full-text-search/src/fuzzy/automaton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/src/fuzzy/automaton.ts -------------------------------------------------------------------------------- /packages/full-text-search/src/fuzzy/lev1t_parametric_description.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/src/fuzzy/lev1t_parametric_description.ts -------------------------------------------------------------------------------- /packages/full-text-search/src/fuzzy/lev2t_parametric_description.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/src/fuzzy/lev2t_parametric_description.ts -------------------------------------------------------------------------------- /packages/full-text-search/src/fuzzy/levenshtein_automata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/src/fuzzy/levenshtein_automata.ts -------------------------------------------------------------------------------- /packages/full-text-search/src/fuzzy/long.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/src/fuzzy/long.ts -------------------------------------------------------------------------------- /packages/full-text-search/src/fuzzy/parametric_description.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/src/fuzzy/parametric_description.ts -------------------------------------------------------------------------------- /packages/full-text-search/src/fuzzy/run_automaton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/src/fuzzy/run_automaton.ts -------------------------------------------------------------------------------- /packages/full-text-search/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/src/index.ts -------------------------------------------------------------------------------- /packages/full-text-search/src/index_searcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/src/index_searcher.ts -------------------------------------------------------------------------------- /packages/full-text-search/src/inverted_index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/src/inverted_index.ts -------------------------------------------------------------------------------- /packages/full-text-search/src/query_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/src/query_types.ts -------------------------------------------------------------------------------- /packages/full-text-search/src/scorer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/src/scorer.ts -------------------------------------------------------------------------------- /packages/full-text-search/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/full-text-search/webpack.config.js -------------------------------------------------------------------------------- /packages/indexed-storage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/indexed-storage/package.json -------------------------------------------------------------------------------- /packages/indexed-storage/spec/web/indexed_storage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/indexed-storage/spec/web/indexed_storage.spec.ts -------------------------------------------------------------------------------- /packages/indexed-storage/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/indexed-storage/src/index.ts -------------------------------------------------------------------------------- /packages/indexed-storage/src/indexed_storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/indexed-storage/src/indexed_storage.ts -------------------------------------------------------------------------------- /packages/indexed-storage/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/indexed-storage/webpack.config.js -------------------------------------------------------------------------------- /packages/local-storage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/local-storage/package.json -------------------------------------------------------------------------------- /packages/local-storage/spec/web/local_storage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/local-storage/spec/web/local_storage.spec.ts -------------------------------------------------------------------------------- /packages/local-storage/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/local-storage/src/index.ts -------------------------------------------------------------------------------- /packages/local-storage/src/local_storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/local-storage/src/local_storage.ts -------------------------------------------------------------------------------- /packages/local-storage/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/local-storage/webpack.config.js -------------------------------------------------------------------------------- /packages/loki/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/package.json -------------------------------------------------------------------------------- /packages/loki/spec/generic/avl-index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/spec/generic/avl-index.spec.ts -------------------------------------------------------------------------------- /packages/loki/spec/generic/changesApi.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/spec/generic/changesApi.spec.ts -------------------------------------------------------------------------------- /packages/loki/spec/generic/cloning.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/spec/generic/cloning.spec.ts -------------------------------------------------------------------------------- /packages/loki/spec/generic/collection.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/spec/generic/collection.spec.ts -------------------------------------------------------------------------------- /packages/loki/spec/generic/comparators.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/spec/generic/comparators.spec.ts -------------------------------------------------------------------------------- /packages/loki/spec/generic/dynamic_view.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/spec/generic/dynamic_view.spec.ts -------------------------------------------------------------------------------- /packages/loki/spec/generic/eventEmitter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/spec/generic/eventEmitter.spec.ts -------------------------------------------------------------------------------- /packages/loki/spec/generic/joins.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/spec/generic/joins.spec.ts -------------------------------------------------------------------------------- /packages/loki/spec/generic/operator_packages.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/spec/generic/operator_packages.spec.ts -------------------------------------------------------------------------------- /packages/loki/spec/generic/ops.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/spec/generic/ops.spec.ts -------------------------------------------------------------------------------- /packages/loki/spec/generic/persistence.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/spec/generic/persistence.spec.ts -------------------------------------------------------------------------------- /packages/loki/spec/generic/remove.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/spec/generic/remove.spec.ts -------------------------------------------------------------------------------- /packages/loki/spec/generic/sortingIndexing.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/spec/generic/sortingIndexing.spec.ts -------------------------------------------------------------------------------- /packages/loki/spec/generic/stage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/spec/generic/stage.spec.ts -------------------------------------------------------------------------------- /packages/loki/spec/generic/stats.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/spec/generic/stats.spec.ts -------------------------------------------------------------------------------- /packages/loki/spec/generic/test.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/spec/generic/test.spec.ts -------------------------------------------------------------------------------- /packages/loki/spec/generic/transforms.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/spec/generic/transforms.spec.ts -------------------------------------------------------------------------------- /packages/loki/spec/generic/typed.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/spec/generic/typed.spec.ts -------------------------------------------------------------------------------- /packages/loki/spec/generic/unique.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/spec/generic/unique.spec.ts -------------------------------------------------------------------------------- /packages/loki/src/avl_index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/src/avl_index.ts -------------------------------------------------------------------------------- /packages/loki/src/clone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/src/clone.ts -------------------------------------------------------------------------------- /packages/loki/src/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/src/collection.ts -------------------------------------------------------------------------------- /packages/loki/src/comparators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/src/comparators.ts -------------------------------------------------------------------------------- /packages/loki/src/dynamic_view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/src/dynamic_view.ts -------------------------------------------------------------------------------- /packages/loki/src/event_emitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/src/event_emitter.ts -------------------------------------------------------------------------------- /packages/loki/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/src/index.ts -------------------------------------------------------------------------------- /packages/loki/src/loki.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/src/loki.ts -------------------------------------------------------------------------------- /packages/loki/src/operator_packages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/src/operator_packages.ts -------------------------------------------------------------------------------- /packages/loki/src/ranged_indexes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/src/ranged_indexes.ts -------------------------------------------------------------------------------- /packages/loki/src/result_set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/src/result_set.ts -------------------------------------------------------------------------------- /packages/loki/src/uml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/src/uml.png -------------------------------------------------------------------------------- /packages/loki/src/unique_index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/src/unique_index.ts -------------------------------------------------------------------------------- /packages/loki/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/loki/webpack.config.js -------------------------------------------------------------------------------- /packages/memory-storage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/memory-storage/package.json -------------------------------------------------------------------------------- /packages/memory-storage/spec/generic/memory_storage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/memory-storage/spec/generic/memory_storage.spec.ts -------------------------------------------------------------------------------- /packages/memory-storage/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/memory-storage/src/index.ts -------------------------------------------------------------------------------- /packages/memory-storage/src/memory_storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/memory-storage/src/memory_storage.ts -------------------------------------------------------------------------------- /packages/memory-storage/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/memory-storage/webpack.config.js -------------------------------------------------------------------------------- /packages/partitioning-adapter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/partitioning-adapter/package.json -------------------------------------------------------------------------------- /packages/partitioning-adapter/spec/generic/partitioning.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/partitioning-adapter/spec/generic/partitioning.spec.ts -------------------------------------------------------------------------------- /packages/partitioning-adapter/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/partitioning-adapter/src/index.ts -------------------------------------------------------------------------------- /packages/partitioning-adapter/src/partitioning_adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/partitioning-adapter/src/partitioning_adapter.ts -------------------------------------------------------------------------------- /packages/partitioning-adapter/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/packages/partitioning-adapter/webpack.config.js -------------------------------------------------------------------------------- /scripts/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/scripts/build.ts -------------------------------------------------------------------------------- /scripts/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/scripts/common.ts -------------------------------------------------------------------------------- /scripts/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/scripts/deploy.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LokiJS-Forge/LokiDB/HEAD/tsconfig.json --------------------------------------------------------------------------------