LogoRobo.js
Framework

EntriesAccessor

Interface: EntriesAccessor

Accessor interface for route entries during build. Provides methods to query and inspect processed entries.

Methods

all()

all(): RouteEntries

Get all entries organized by namespace and route.

Returns

RouteEntries


get()

get(namespace, route): ProcessedEntry[]

Get entries for a specific route.

Parameters

ParameterTypeDescription
namespacestringPlugin namespace (e.g., 'discordjs', 'server')
routestringRoute name (e.g., 'commands', 'api')

Returns

ProcessedEntry[]


handlers()

handlers(namespace, route): HandlerEntry[]

Get handler entries (with source tracking) for a route.

Parameters

ParameterTypeDescription
namespacestringPlugin namespace
routestringRoute name

Returns

HandlerEntry[]

On this page