Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: import naming
Browse files Browse the repository at this point in the history
jkoenig134 committed Dec 19, 2023

Verified

This commit was signed with the committer’s verified signature.
jkoenig134 Julian König
1 parent 4e3fa8d commit e015479
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/loki/src/LokiJsConnection.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { IDatabaseConnection } from "@js-soft/docdb-access-abstractions";
import Lokijs from "lokijs";
import lokijs from "lokijs";
import { ILokiJsDatabaseFactory } from "./ILokiJsDatabaseFactory";
import { LokiJsCollectionProvider } from "./LokiJsCollectionProvider";
import { LokiJsOptions } from "./LokiJsOptions";
@@ -9,7 +9,7 @@ export class LokiJsConnection implements IDatabaseConnection {

private static readonly defaultDatabaseFactory = {
create: (filename: string, options?: LokiJsOptions): Loki => {
return new Lokijs(filename, options);
return new lokijs(filename, options);
}
};

0 comments on commit e015479

Please sign in to comment.