mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-15 11:35:44 +02:00
9 lines
259 B
TypeScript
9 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
|