Interface IParsedCommand

interface IParsedCommand {
    arguments: Record<
        string,
        string
        | number
        | boolean
        | PlayerOnGameserverOutputWithRolesDTO,
    >;
    command: string;
    [key: string]:
        | string
        | Record<
            string,
            string
            | number
            | boolean
            | PlayerOnGameserverOutputWithRolesDTO,
        >;
}

Indexable

  • [key: string]:
        | string
        | Record<
            string,
            string
            | number
            | boolean
            | PlayerOnGameserverOutputWithRolesDTO,
        >

Properties

Properties

arguments: Record<
    string,
    string
    | number
    | boolean
    | PlayerOnGameserverOutputWithRolesDTO,
>
command: string