mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 08:13:10 +02:00
8 lines
259 B
TypeScript
8 lines
259 B
TypeScript
import db from '../../db/mongodb';
|
|
|
|
const collection = db.get('access_tokens');
|
|
|
|
(collection as any).index('token'); // fuck type definition
|
|
(collection as any).index('hash'); // fuck type definition
|
|
|
|
export default collection as any; // fuck type definition
|