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

@kubb/types

Package Overview
Dependencies
Maintainers
1
Versions
379
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kubb/types - npm Package Compare versions

Comparing version 0.0.0-canary-20240328221221 to 0.0.0-canary-20240331163352

2

package.json
{
"name": "@kubb/types",
"version": "0.0.0-canary-20240328221221",
"version": "0.0.0-canary-20240331163352",
"description": "Generator types",

@@ -5,0 +5,0 @@ "keywords": [

@@ -1,7 +0,4 @@

export type Prettify<T> =
& {
[K in keyof T]: T[K]
}
// eslint-disable-next-line @typescript-eslint/ban-types
& {}
export type Prettify<T> = {
[K in keyof T]: T[K]
} & {} // eslint-disable-next-line @typescript-eslint/ban-types

@@ -29,3 +26,2 @@ export type PossiblePromise<T> = Promise<T> | T

export type SplitByDelimiter<T extends string, D extends string> = T extends `${infer P}${D}${infer Q}` ? [P, ...SplitByDelimiter<Q, D>]
: [T]
export type SplitByDelimiter<T extends string, D extends string> = T extends `${infer P}${D}${infer Q}` ? [P, ...SplitByDelimiter<Q, D>] : [T]
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