An event's comment (unrelated to comments in bundles) can be a lot of things depending of the event type

interface WithModes {
    modes: (
        | "osu"
        | "taiko"
        | "fruits"
        | "mania")[];
}

Hierarchy (view full)

Properties

Properties

modes: (
    | "osu"
    | "taiko"
    | "fruits"
    | "mania")[]