├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── UPGRADE.md ├── package.json ├── prettier.config.js ├── src ├── DatabaseClient.ts ├── Decorators.ts ├── Deferred.ts ├── Repository.ts ├── Types.ts └── index.ts ├── tests └── Repository.spec.ts ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swimlane/mongtype/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swimlane/mongtype/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swimlane/mongtype/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swimlane/mongtype/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swimlane/mongtype/HEAD/UPGRADE.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swimlane/mongtype/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swimlane/mongtype/HEAD/prettier.config.js -------------------------------------------------------------------------------- /src/DatabaseClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swimlane/mongtype/HEAD/src/DatabaseClient.ts -------------------------------------------------------------------------------- /src/Decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swimlane/mongtype/HEAD/src/Decorators.ts -------------------------------------------------------------------------------- /src/Deferred.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swimlane/mongtype/HEAD/src/Deferred.ts -------------------------------------------------------------------------------- /src/Repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swimlane/mongtype/HEAD/src/Repository.ts -------------------------------------------------------------------------------- /src/Types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swimlane/mongtype/HEAD/src/Types.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swimlane/mongtype/HEAD/src/index.ts -------------------------------------------------------------------------------- /tests/Repository.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swimlane/mongtype/HEAD/tests/Repository.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swimlane/mongtype/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swimlane/mongtype/HEAD/tslint.json --------------------------------------------------------------------------------