Framework
EntriesAccessor
Interface: EntriesAccessor
Accessor interface for route entries during build. Provides methods to query and inspect processed entries.
Methods
all()
all(): RouteEntriesGet all entries organized by namespace and route.
Returns
get()
get(namespace, route): ProcessedEntry[]Get entries for a specific route.
Parameters
| Parameter | Type | Description |
|---|---|---|
namespace | string | Plugin namespace (e.g., 'discordjs', 'server') |
route | string | Route name (e.g., 'commands', 'api') |
Returns
handlers()
handlers(namespace, route): HandlerEntry[]Get handler entries (with source tracking) for a route.
Parameters
| Parameter | Type | Description |
|---|---|---|
namespace | string | Plugin namespace |
route | string | Route name |
