This commit is contained in:
2026-05-26 14:15:09 +09:00
parent 55d402f606
commit d6b36c43c2
33 changed files with 1496 additions and 0 deletions

11
db/db.d.ts vendored Normal file
View File

@@ -0,0 +1,11 @@
export interface GuildType {
id: string;
name: string;
channel_id: string;
}
export interface UserType {
guild_id: string;
id: string;
name: string;
}