1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-11-02 08:05:58 +09:00
cherrypick/src/models/meta.ts

9 lines
136 B
TypeScript
Raw Normal View History

2018-03-29 20:32:18 +09:00
import db from '../db/mongodb';
2017-11-15 09:47:47 +09:00
2018-03-29 14:48:47 +09:00
const Meta = db.get<IMeta>('meta');
export default Meta;
2017-11-15 09:47:47 +09:00
export type IMeta = {
2018-03-29 14:48:47 +09:00
broadcasts: any[];
2017-11-15 09:47:47 +09:00
};