Files
Nitro-V3/src/api/room/widgets/CommandDefinition.ts
T
simoleo89 119d12a5ea Add quick commands autocomplete dropdown in chat input
Server-authoritative command list via packet 4050, merged with
client-only commands. Supports keyboard navigation, filtering,
and module-level caching to handle login-time packet timing.

Co-Authored-By: medievalshell <medievalshell@users.noreply.github.com>
2026-03-16 22:41:35 +01:00

6 lines
81 B
TypeScript

export interface CommandDefinition
{
key: string;
description: string;
}