Packages

Elixir library for building Telegram bots with macro-based API

Current section

Files

Jump to
telegram_ex lib types types.ex
Raw

lib/types/types.ex

defmodule TelegramEx.Types do
@moduledoc """
Common types used across the library.
"""
@type update :: map()
@type updates :: list(update())
@type chat_id :: integer()
end