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

@convey/react

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@convey/react - npm Package Compare versions

Comparing version 0.1.0 to 0.3.0

22

CHANGELOG.md

@@ -6,2 +6,24 @@ # Change Log

# [0.3.0](https://github.com/lttb/convey/compare/@convey/react@0.2.0...@convey/react@0.3.0) (2021-11-24)
### Features
* **core, react:** improve types ([161799f](https://github.com/lttb/convey/commit/161799feb8747be85e3c66313b44d63025acaf0b))
# [0.2.0](https://github.com/lttb/convey/compare/@convey/react@0.1.0...@convey/react@0.2.0) (2021-11-22)
### Features
* **react:** fix hook types ([4964f48](https://github.com/lttb/convey/commit/4964f483c5fd4369429c40f97db0aaa93e5b85c9))
# 0.1.0 (2021-11-04)

@@ -8,0 +30,0 @@

2

package.json

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

{"main":"index.mjs","types":"index.d.ts","name":"@convey/react","type":"module","version":"0.1.0","author":"Kenzhaev Artur <kenzhaev.artur@gmail.com>","license":"MIT","publishConfig":{"access":"public"},"repository":{"type":"git","url":"https://github.com/lttb/convey.git","directory":"@convey/react"},"scripts":{"test":"","prebuild":"rm -rf lib","build":"rollup -c"},"peerDependencies":{"@convey/core":"^0.0.1","react":">=16.0.0"}}
{"main":"index.mjs","types":"index.d.ts","name":"@convey/react","type":"module","version":"0.3.0","author":"Kenzhaev Artur <kenzhaev.artur@gmail.com>","license":"MIT","publishConfig":{"access":"public"},"repository":{"type":"git","url":"https://github.com/lttb/convey.git","directory":"@convey/react"},"scripts":{"test":"","prebuild":"rm -rf lib","build":"rollup -c"},"peerDependencies":{"@convey/core":"^0.0.1","react":">=16.0.0"}}

@@ -1,2 +0,2 @@

import type { Resolver, Unbox } from '@convey/core';
import type { Unbox, ResolverResult } from '@convey/core';
declare type MetaBase = {

@@ -16,3 +16,3 @@ refresh: () => void;

];
export declare function useResolver<Params extends any[], Result>(resolver: null | ReturnType<Resolver<Params, Result>>): HookResult<Result>;
export declare function useResolver<Result, Params extends any[] = any[]>(resolver: null | ResolverResult<Result, Params>): HookResult<Result>;
export {};
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