get_ntv_component_props
Retrieve detailed input properties and configuration options for Angular components to understand component capabilities and usage requirements.
Instructions
Get detailed information about a component's input properties and configuration options
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| component | Yes | Component name (e.g., 'Button', 'Input') | |
| propName | No | Optional: Get details for a specific property |
Input Schema (JSON Schema)
{
"properties": {
"component": {
"description": "Component name (e.g., 'Button', 'Input')",
"type": "string"
},
"propName": {
"description": "Optional: Get details for a specific property",
"type": "string"
}
},
"required": [
"component"
],
"type": "object"
}