9 lines
115 B
TypeScript
9 lines
115 B
TypeScript
interface Guild {
|
|
id: string;
|
|
name: string;
|
|
iconUrl: string;
|
|
canManage: boolean;
|
|
}
|
|
|
|
export type { Guild };
|