Interface ClusterOptions

interface ClusterOptions {
    filter?: ((node: ClusterNode, guildId: string) => boolean);
    nodes?: ClusterNodeOptions[];
    send: ((guildId: string, packet: any) => any);
}

Properties

Properties

filter?: ((node: ClusterNode, guildId: string) => boolean)
send: ((guildId: string, packet: any) => any)