blob: 73e2ff95e1e2d23c4e057917e262506a54250f66 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
type snowflake <ocaml from="Snowflake" t="t"> = abstract
type t = {
id: snowflake;
username: string;
discriminator: string;
?avatar: string option;
~bot <ocaml default="false">: bool;
}
|