11 lines
163 B
TypeScript
11 lines
163 B
TypeScript
export interface GuildType {
|
|
id: string;
|
|
name: string;
|
|
channel_id: string;
|
|
}
|
|
|
|
export interface UserType {
|
|
guild_id: string;
|
|
id: string;
|
|
name: string;
|
|
} |