find_interfaces
Search for TypeScript interfaces by name pattern using wildcards to discover available type definitions for generating type-safe mocks and test data.
Instructions
Find interfaces matching a pattern
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pattern | Yes | Pattern to match interface names (supports wildcards with *) |
Input Schema (JSON Schema)
{
"properties": {
"pattern": {
"description": "Pattern to match interface names (supports wildcards with *)",
"type": "string"
}
},
"required": [
"pattern"
],
"type": "object"
}