mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-15 18:10:59 -07:00
9 lines
322 B
TypeScript
9 lines
322 B
TypeScript
import db from '../../db/mongodb';
|
|
|
|
const collection = db.get('apps');
|
|
|
|
(collection as any).index('name_id'); // fuck type definition
|
|
(collection as any).index('name_id_lower'); // fuck type definition
|
|
(collection as any).index('secret'); // fuck type definition
|
|
|
|
export default collection as any; // fuck type definition
|