get_ntv_component_doc
Retrieve detailed documentation for NTV components including props, events, and usage patterns to understand component functionality and implementation requirements.
Instructions
Gets comprehensive documentation for a specific NTV component including props, events, and usage patterns
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| component | Yes | Component name (e.g., 'Button', 'Input', 'Card', 'Autocomplete') |
Input Schema (JSON Schema)
{
"properties": {
"component": {
"description": "Component name (e.g., 'Button', 'Input', 'Card', 'Autocomplete')",
"type": "string"
}
},
"required": [
"component"
],
"type": "object"
}