mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-09 00:03:09 +02:00
8 lines
144 B
TypeScript
8 lines
144 B
TypeScript
|
import db from '../../db/mongodb';
|
||
|
|
||
|
export default db.get('meta') as any; // fuck type definition
|
||
|
|
||
|
export type IMeta = {
|
||
|
top_image: string;
|
||
|
};
|