Open tyleralves opened 4 years ago
I have seen some discussion that mobx-remotedev implements the "Redux DevTools Extension" API. So I'm curious whether the serialize option can be passed in.
serialize
This doesn't seem to work:
const DevRootStore: typeof RootStore = remotedev(RootStore, { remote: false, global: true, onlyActions: true, serialize: { replacer: (key, val) => key === 'root' ? 'root' : val; }, });
I have seen some discussion that mobx-remotedev implements the "Redux DevTools Extension" API. So I'm curious whether the
serialize
option can be passed in.This doesn't seem to work: