get_api_surface
List all exported symbols (public API) of files matching a glob pattern to understand module exports. Inspect the public API surface of your codebase.
Instructions
List all exported symbols (public API) of a file or matching files. Use to understand what a module exposes. For finding unused exports use get_dead_exports instead. Read-only. Returns JSON: { files: [{ path, exports: [{ name, kind, signature }] }] }.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_pattern | No | Glob-style pattern to filter files (e.g. src/services/*.ts) |