add non-working listener methods
This commit is contained in:
parent
cdcefa5cfa
commit
fcf04bf7f5
|
@ -30,7 +30,10 @@ createMethods(List.prototype, objectTypes.LIST, [
|
||||||
'filtered',
|
'filtered',
|
||||||
'sorted',
|
'sorted',
|
||||||
'snapshot',
|
'snapshot',
|
||||||
'isValid',
|
'isValid',
|
||||||
|
'addListener',
|
||||||
|
'removeListener',
|
||||||
|
'removeAllListeners',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
// Mutating methods:
|
// Mutating methods:
|
||||||
|
|
|
@ -30,6 +30,9 @@ createMethods(Results.prototype, objectTypes.RESULTS, [
|
||||||
'sorted',
|
'sorted',
|
||||||
'snapshot',
|
'snapshot',
|
||||||
'isValid',
|
'isValid',
|
||||||
|
'addListener',
|
||||||
|
'removeListener',
|
||||||
|
'removeAllListeners',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
export function createResults(realmId, info) {
|
export function createResults(realmId, info) {
|
||||||
|
|
Loading…
Reference in New Issue