mirror of
https://github.com/chuot/rdio-scanner.git
synced 2026-08-14 08:53:03 -06:00
8 lines
286 B
TypeScript
8 lines
286 B
TypeScript
import { MongoObservable } from 'meteor-rxjs';
|
|
import { System } from '../models/system';
|
|
import { BaseCollection } from './base-collection';
|
|
|
|
class Collection extends BaseCollection<System> { }
|
|
|
|
export const Systems = new MongoObservable.Collection<System>(new Collection('systems'));
|