Socket
Socket
Sign inDemoInstall

realar

Package Overview
Dependencies
Maintainers
1
Versions
129
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

realar - npm Package Compare versions

Comparing version 0.4.28 to 0.4.29

5

build/index.d.ts

@@ -7,5 +7,6 @@ import { FC } from 'react';

(data: T): void;
(this: T extends void ? void : `Error: Expected 1 argument, but got 0`, data?: T): void;
0: () => K;
} & Pick<Promise<T>, 'then' | 'catch' | 'finally'>;
} & Pick<Promise<T>, 'then' | 'catch' | 'finally'> & (T extends void ? {
(): void;
} : {});
declare function action<T = void>(): Action<T, Ensurable<T>>;

@@ -12,0 +13,0 @@ declare function action<T = void>(init: T): Action<T>;

4

package.json
{
"name": "realar",
"version": "0.4.28",
"version": "0.4.29",
"description": "React state manager",

@@ -88,3 +88,3 @@ "repository": {

},
"gitHead": "752c224e8f119e1c08b2f38dc5bde525931e8c65"
"gitHead": "c35e46a34e77c2334de5fb295b425ffaf10d7bae"
}

@@ -71,5 +71,9 @@ import React, { Context, FC } from 'react';

(data: T): void;
(this: T extends void ? void : `Error: Expected 1 argument, but got 0`, data?: T): void;
0: () => K;
} & Pick<Promise<T>, 'then' | 'catch' | 'finally'>;
} & Pick<Promise<T>, 'then' | 'catch' | 'finally'> &
(T extends void
? {
(): void;
}
: {});

@@ -76,0 +80,0 @@ function action<T = void>(): Action<T, Ensurable<T>>;

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