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

@raycast/generate-docs

Package Overview
Dependencies
Maintainers
8
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@raycast/generate-docs - npm Package Compare versions

Comparing version 0.8.13 to 0.8.14

2

package.json
{
"name": "@raycast/generate-docs",
"version": "0.8.13",
"version": "0.8.14",
"description": "",

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

@@ -142,2 +142,13 @@ // @ts-check

}
if (item.type === "indexedAccess" && item.objectType.type === "reference") {
const parameter = typeParameters.find((x) => x.id === item.objectType.id);
if (parameter && parameter.default?.type === "reflection") {
const indexed = parameter.default.declaration.children.find(
(x) => x.name === item.indexType.value
);
if (indexed) {
return getTypeString(indexed.type, typeParameters, context);
}
}
}

@@ -144,0 +155,0 @@ throw new Error(

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