Skip to content

Instantly share code, notes, and snippets.

@GaetanoPiazzolla
Last active January 19, 2022 16:18
Show Gist options
  • Save GaetanoPiazzolla/eaaf6830a85cfedc558678e6868550ce to your computer and use it in GitHub Desktop.
Save GaetanoPiazzolla/eaaf6830a85cfedc558678e6868550ce to your computer and use it in GitHub Desktop.
const listenerId = store.addTableListener('pets', () =>
console.log('changed'),
);
store.setCell('pets', 'fido', 'sold', false);
// -> 'changed'
store.delListener(listenerId);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment