Alchemy.Client.trigger_typing

You're seeing just the function trigger_typing, go back to Alchemy.Client module for more information.
Link to this function

trigger_typing(channel_id)

Specs

trigger_typing(snowflake()) :: {:ok, nil} | {:error, term()}

Triggers the typing indicator.

This shouldn't be used by bots usually.

Examples

Cogs.def hard_math do
  Client.trigger_typing(message.channel_id)
  Process.sleep(3000)
  Cogs.say("done!")
end