We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d68257b commit 11607bbCopy full SHA for 11607bb
javascript/src/truth-table-generator/database/index.ts
@@ -1,5 +1,7 @@
1
import type { ChangeEvent, MongoQuery, QueryParams } from '../../types';
2
3
+export * from './mingo.js';
4
+
5
/**
6
* Abstract the database so that
7
* we can swap it out.
javascript/src/truth-table-generator/database/mingo.ts
@@ -10,7 +10,6 @@ import {
10
getProperty
11
} from '../../util.js';
12
13
-
14
export function mingoCollectionCreator(): Collection {
15
const data: Human[] = [];
16
const collection: Collection = {
0 commit comments