add non-working listener methods

This commit is contained in:
Ari Lazier 2016-11-22 07:27:58 -08:00
parent cdcefa5cfa
commit fcf04bf7f5
2 changed files with 7 additions and 1 deletions

View File

@ -30,7 +30,10 @@ createMethods(List.prototype, objectTypes.LIST, [
'filtered',
'sorted',
'snapshot',
'isValid',
'isValid',
'addListener',
'removeListener',
'removeAllListeners',
]);
// Mutating methods:

View File

@ -30,6 +30,9 @@ createMethods(Results.prototype, objectTypes.RESULTS, [
'sorted',
'snapshot',
'isValid',
'addListener',
'removeListener',
'removeAllListeners',
]);
export function createResults(realmId, info) {