Don't include type files in build

This commit is contained in:
Tarrgon
2025-06-02 08:53:20 -04:00
parent d40dac9a96
commit b2e1b4beee
6 changed files with 0 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
export type LoggedMessage = {
id: string
author_id: string
author_name: string
channel_id: string
attachments: string
stickers: string
content: string
}
export type GuildSettings = {
guild_id: string
general_chat_id?: string
new_member_channel_id?: string
tickets_channel_id?: string
event_logs_channel_id?: string
audit_logs_channel_id?: string
voice_logs_channel_id?: string
admin_role_id?: string
private_help_role_id?: string
staff_categories?: string
}
export type TicketMessage = {
id: number
message_id: string
}
export type TicketPhrase = {
id: number
user_id: string
phrase: string
}
export type Note = {
id: number
user_id: string
reason: string
mod_id: string
timestamp: string
}