mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 20:53:08 +02: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
|