aboutsummaryrefslogtreecommitdiff
path: root/lib/models/user/user.mli
blob: d6050c2a4c2ba297a9546130280584cd7bf4f1e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
include module type of User_t

(** The user tag. Equivalent to concatenating the username and discriminator, separated by a '#'. *)
val tag : t -> string

(** The mention string for the user. Equivalent to [<@USER_ID>]. *)
val mention : t -> string

(** The default avatar for the user. *)
val default_avatar : t -> string

(** The avatar url of the user, falling back to the default avatar. *)
val face : t -> string