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

@dappworks/urpc

Package Overview
Dependencies
Maintainers
4
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dappworks/urpc - npm Package Compare versions

Comparing version 0.0.15 to 0.0.16

5

dist/index.d.ts

@@ -13,3 +13,3 @@ // Generated by dts-bundle-generator v9.5.1

export type FormConfigType<T> = {
[F in keyof T]?: FormConfigItem;
[F in keyof T]?: Item<FormConfigItem>;
};

@@ -25,2 +25,3 @@ export type FormConfigItem = {

} & UiSchema;
export type Item<T> = T extends (infer U)[] ? U : T;
export interface URPC_Function<T extends Object = {}, R = any> {

@@ -45,3 +46,3 @@ uid: string;

set?: R extends () => infer U ? (value: ReturnType<T>) => U : never;
uiConfig?: () => FormConfigType<ReturnType<T>>;
uiConfig?: () => FormConfigType<Item<ReturnType<T>>>;
}

@@ -48,0 +49,0 @@ export type URPC_Entity = URPC_Function<any, any> | URPC_Variable<any, any>;

2

package.json
{
"name": "@dappworks/urpc",
"version": "0.0.15",
"version": "0.0.16",
"module": "index.ts",

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

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