mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-04-02 13:43:36 +09:00
16 lines
307 B
TypeScript
16 lines
307 B
TypeScript
import * as mongodb from 'mongodb';
|
|
import db from '../db/mongodb';
|
|
|
|
const RemoteUserObject = db.get<IRemoteUserObject>('remoteUserObjects');
|
|
|
|
export default RemoteUserObject;
|
|
|
|
export type IRemoteUserObject = {
|
|
_id: mongodb.ObjectID;
|
|
uri: string;
|
|
object: {
|
|
$ref: string;
|
|
$id: mongodb.ObjectID;
|
|
}
|
|
};
|