blob: a947d88e4c1daa6b4cd39284617d9fe4368bcbd3 (
plain)
1
2
3
4
5
6
7
8
9
|
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
|