CompiledCommandRoute
CompiledCommandRoute
Executable command route produced from the internal tree.
Signature
interface CompiledCommandRoute {
id: string;
key: string;
kind: Exclude<CommandTreeNodeKind, 'root' | 'group'>;
token: string;
route: string[];
category: string | null;
definitionPath: string;
relativePath: string;
nodeId: string;
middlewares: string[];
}