keeweb/app/scripts/collections/entry-collection.js

9 lines
206 B
JavaScript

import { Collection } from 'framework/collection';
import { EntryModel } from 'models/entry-model';
class EntryCollection extends Collection {
static model = EntryModel;
}
export { EntryCollection };