New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ts-gems

Package Overview
Dependencies
Maintainers
1
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ts-gems - npm Package Compare versions

Comparing version 3.1.1 to 3.2.0

lib/dto.d.ts

2

lib/index.d.ts
export * from "./combine";
export * from "./dto";
export * from "./helpers";

@@ -15,2 +16,1 @@ export * from "./logical.js";

export * from "./types";

@@ -78,4 +78,4 @@ /**

export type Thunk<T, Args extends any[] = any[]> = T | ((...args: Args) => T);
export type ThunkAsync<T, Args extends any[] = any[]> = Thunk<T> | ((...args: Args) => Promise<T>);
export type Thunk<T> = T | (() => T);
export type ThunkAsync<T> = Thunk<T> | (() => Promise<T>)
export type TypeThunk<T = any> = Thunk<Type<T>>;

@@ -82,0 +82,0 @@ export type TypeThunkAsync<T = any> = ThunkAsync<Type<T>>;

@@ -15,3 +15,3 @@ {

],
"version": "3.1.1",
"version": "3.2.0",
"types": "lib/index.d.ts",

@@ -36,8 +36,8 @@ "main": "lib/index.js",

"devDependencies": {
"@types/jest": "^29.5.11",
"eslint": "^8.56.0",
"@types/jest": "^29.5.12",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
}
}
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