aboutsummaryrefslogtreecommitdiff
path: root/lib/guild.atd
diff options
context:
space:
mode:
authorAdelyn Breelove <[email protected]>2019-01-10 13:12:49 -0700
committerAdelyn Breelove <[email protected]>2019-01-10 13:12:49 -0700
commitb9ee77f8153090e9d47e73ab195540d10720c7b6 (patch)
treed36bdb7ce17e03ee1bdb60d6b638f8ac6e022711 /lib/guild.atd
parentWhy are events so confusing (diff)
downloaddisml-b9ee77f8153090e9d47e73ab195540d10720c7b6.tar.xz
disml-b9ee77f8153090e9d47e73ab195540d10720c7b6.zip
AAAAAAAAAAAAAAAAAAAAAAAA
Diffstat (limited to 'lib/guild.atd')
-rw-r--r--lib/guild.atd36
1 files changed, 0 insertions, 36 deletions
diff --git a/lib/guild.atd b/lib/guild.atd
deleted file mode 100644
index c290b5f..0000000
--- a/lib/guild.atd
+++ /dev/null
@@ -1,36 +0,0 @@
-type snowflake <ocaml from="Snowflake" t="t"> = abstract
-type user <ocaml from="User" t="t"> = abstract
-type member <ocaml from="Member" t="member"> = abstract
-type role <ocaml from="Role" t="role"> = abstract
-type channel <ocaml from="Channel" t="channel_wrapper"> = abstract
-type emoji <ocaml from="Emoji" t="t"> = abstract
-
-
-type t = {
- id: snowflake;
- name: string;
- ?icon: string option;
- ?splash: string option;
- owner_id: snowflake;
- region: string;
- ?afk_channel_id: snowflake option;
- afk_timeout: int;
- ?embed_enabled: bool option;
- ?embed_channel_id: snowflake option;
- verification_level: int;
- default_message_notifications: int;
- explicit_content_filter: int;
- roles: role list;
- emojis: emoji list;
- features: string list;
- mfa_level: int;
- ?application_id: snowflake option;
- ?widget_enabled: bool option;
- ?widget_channel: channel option;
- ?system_channel: channel option;
- ~large: bool;
- ~unavailable: bool;
- ?member_count: int option;
- ~members: member list;
- ~channels: channel list;
-} \ No newline at end of file