mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
Add type annotation
This commit is contained in:
parent
d1f671f436
commit
8b9bb8ec0c
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ import * as mongo from 'mongodb';
|
|||
import db from '../db/mongodb';
|
||||
|
||||
const Stats = db.get<IStats>('stats');
|
||||
Stats.dropIndex({ date: -1 }); // 後方互換性のため
|
||||
Stats.dropIndex({ date: -1 } as any); // 後方互換性のため
|
||||
Stats.createIndex({ span: -1, date: -1 }, { unique: true });
|
||||
export default Stats;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue