diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-10-31 21:32:38 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-10-31 21:32:38 +0900 |
| commit | 0e95cdb04c5f91e44ef95e592f830485e61b6073 (patch) | |
| tree | acbc195491777c8c67b2cc39f0447e6406915321 /src/api/models | |
| parent | wip (diff) | |
| parent | v2752 (diff) | |
| download | sharkey-0e95cdb04c5f91e44ef95e592f830485e61b6073.tar.gz sharkey-0e95cdb04c5f91e44ef95e592f830485e61b6073.tar.bz2 sharkey-0e95cdb04c5f91e44ef95e592f830485e61b6073.zip | |
Merge remote-tracking branch 'refs/remotes/origin/master' into bbs
Diffstat (limited to 'src/api/models')
| -rw-r--r-- | src/api/models/notification.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/api/models/notification.ts b/src/api/models/notification.ts index 1c1f429a0d..1065e8baaa 100644 --- a/src/api/models/notification.ts +++ b/src/api/models/notification.ts @@ -1,3 +1,8 @@ +import * as mongo from 'mongodb'; import db from '../../db/mongodb'; export default db.get('notifications') as any; // fuck type definition + +export interface INotification { + _id: mongo.ObjectID; +} |