Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mobx-keystone-asyncstore

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mobx-keystone-asyncstore - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

1

dist/AsyncStore.d.ts

@@ -168,2 +168,3 @@ import { AnyModel, ModelClass, ModelProps, _Model } from "mobx-keystone";

getAll(): T[];
createAsyncContainer(id: string, add?: boolean): T;
}

@@ -181,2 +181,9 @@ "use strict";

}
createAsyncContainer(id, add = false) {
const ct = new AsyncContainer({ id });
if (add) {
this.containers.set(id, ct);
}
return ct;
}
};

@@ -228,2 +235,5 @@ __decorate([

], BaseAsyncStore.prototype, "getAll", null);
__decorate([
mobx_keystone_1.modelAction
], BaseAsyncStore.prototype, "createAsyncContainer", null);
BaseAsyncStore = __decorate([

@@ -230,0 +240,0 @@ mobx_keystone_1.model(`stores/BaseAsyncStore(${id})`)

2

package.json
{
"name": "mobx-keystone-asyncstore",
"version": "0.2.0",
"version": "0.2.1",
"author": "Marcus Ekwall <marcus.ekwall@gmail.com>",

@@ -5,0 +5,0 @@ "license": "MIT",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc