diff options
| author | Adelyn Breelove <[email protected]> | 2019-01-21 09:08:47 -0700 |
|---|---|---|
| committer | Adelyn Breelove <[email protected]> | 2019-01-21 09:08:47 -0700 |
| commit | b6ad18b9795428c39292c15c712c7ce0ec0986c6 (patch) | |
| tree | 5113f4bb480815ee316e847cca954060afc419af /lib/models/channel/message/reaction_t.mli | |
| parent | folder restructure (diff) | |
| download | disml-b6ad18b9795428c39292c15c712c7ce0ec0986c6.tar.xz disml-b6ad18b9795428c39292c15c712c7ce0ec0986c6.zip | |
finish making model signatures
Diffstat (limited to 'lib/models/channel/message/reaction_t.mli')
| -rw-r--r-- | lib/models/channel/message/reaction_t.mli | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/models/channel/message/reaction_t.mli b/lib/models/channel/message/reaction_t.mli new file mode 100644 index 0000000..5bdd275 --- /dev/null +++ b/lib/models/channel/message/reaction_t.mli @@ -0,0 +1,12 @@ +type reaction_event = { + user_id: Snowflake.t; + channel_id: Snowflake.t; + message_id: Snowflake.t; + guild_id: Snowflake.t option; + emoji: Emoji.partial_emoji; +} [@@deriving sexp, yojson] + +type t = { + count: int; + emoji: Emoji.t; +} [@@deriving sexp, yojson]
\ No newline at end of file |