We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dae6fdf commit a753bcdCopy full SHA for a753bcd
src/entity/set.js
@@ -2,14 +2,12 @@ import _ from "underscore";
2
import {mix} from "mixwith";
3
4
import { InMemoryEntity } from "./in_memory";
5
-import {NamedEntityMixin, TaggableMixin } from "./mixins";
6
import {InMemoryEntitySetMixin, InMemoryEntityInSetMixin } from "./set/mixins";
7
8
export class InMemoryEntitySet extends mix(InMemoryEntity).with(
9
InMemoryEntitySetMixin,
10
InMemoryEntityInSetMixin,
11
- NamedEntityMixin,
12
- TaggableMixin,
+
13
) {
14
15
get isEntitySet() {return this.prop('isEntitySet')}
0 commit comments