rlz-engine 1.0.18 → 1.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Collection, Db, Document, IndexDescription } from 'mongodb';
|
|
2
|
-
type StorageIndexDescription = IndexDescription & {
|
|
2
|
+
export type StorageIndexDescription = IndexDescription & {
|
|
3
3
|
name: string;
|
|
4
4
|
};
|
|
5
5
|
export declare class MongoStorage {
|
|
@@ -12,4 +12,3 @@ export declare class MongoStorage {
|
|
|
12
12
|
createIndexes<T extends Document>(collection: Collection<T>, indexes: StorageIndexDescription[]): Promise<void>;
|
|
13
13
|
private listIndexes;
|
|
14
14
|
}
|
|
15
|
-
export {};
|