Type Alias IGuild

IGuild:
    | Snowflake
    | Snowflake[]
    | (
        client: Client,
        command:
            | DApplicationCommand
            | DComponent
            | DReaction
            | SimpleCommandMessage
            | undefined,
    ) => Snowflake
    | Snowflake[]
    | Promise<Snowflake>
    | Promise<Snowflake[]>