Socket
Socket
Sign inDemoInstall

mobx-remotedev

Package Overview
Dependencies
21
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.3.1 to 0.3.2

27

index.d.ts

@@ -1,1 +0,26 @@

export default function<T>(store: T): T;
/**
* Wrapper/Decorator for Mobx stores
*/
export default function<T>(store: T, config?: RemoteDevConfig): T;
/**
* Config object for remotedev function argument
*/
export type RemoteDevConfig = {
/**the instance name to be showed on the monitor page. Default value is document.title. */
name?: string;
/**set it to true to have a clear log only with actions. If MobX is in strict mode, it is true by default. Don't forget about async actions. */
onlyActions?: Boolean;
/**set it to true in order to assign dispatching of all unhandled actions to this store. Useful for nested classes /
* observables or when having async actions without specifying the scope explicitly. */
global?: Boolean;
/**map of arrays named whitelist or blacklist to filter action types. You can also set it globally in the extension settings.
*/
filters?: object;
/** set it to true to have remote monitoring via the local or remotedev.io server. remote: false is used for the extension or react-native-debugger */
remote?: boolean;
/**use to specify host for remotedev-server. If port is specified, default value is localhost. */
hostname?: string;
/**use to specify host's port for remotedev-server. */
port?: number;
};

2

package.json
{
"name": "mobx-remotedev",
"version": "0.3.1",
"version": "0.3.2",
"description": "Remote debugging for mobx.",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc