Skip to main content
Version: 1.x

ParsedCommandData

ParsedCommandData

Data structure containing parsed commands, middleware, and tree data.

Signature
interface ParsedCommandData {
commands: Record<string, Command>;
middlewares: Record<string, Middleware>;
treeNodes?: Record<string, CommandTreeNode>;
compiledRoutes?: Record<string, CompiledCommandRoute>;
diagnostics?: CommandRouteDiagnostic[];
}

commands

property
Record<string, Command>

middlewares

property
Record<string, Middleware>

treeNodes

property
Record<string, CommandTreeNode>

compiledRoutes

property
Record<string, CompiledCommandRoute>

diagnostics