fix(core): update

This commit is contained in:
Philipp Kunz 2019-01-08 12:38:59 +01:00
parent 3674d7d9a5
commit 3c8f70f77e
3 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,5 @@
export * from './smartdata.classes.db';
export * from './smartdata.classes.collection';
export * from './smartdata.classes.doc';
export { IMongoDescriptor } from './interfaces';

1
ts/interfaces/index.ts Normal file
View File

@ -0,0 +1 @@
export * from './mongodescriptor';

View File

@ -0,0 +1,5 @@
export interface IMongoDescriptor {
connectionUrl: string;
password: string;
database: string;
}