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