get_package_types
Retrieve all TypeScript type definitions from a specified npm package to enable type-safe code generation and testing.
Instructions
Get all type definitions from a specific package
Input Schema
Name | Required | Description | Default |
---|---|---|---|
packageName | Yes | Name of the package to get types from |
Input Schema (JSON Schema)
{
"properties": {
"packageName": {
"description": "Name of the package to get types from",
"type": "string"
}
},
"required": [
"packageName"
],
"type": "object"
}