Claptrap-ui/src/data/guild/Guild.ts

9 lines
115 B
TypeScript
Raw Normal View History

2022-06-16 15:19:29 +02:00
interface Guild {
2022-05-29 16:16:38 +02:00
id: string;
name: string;
iconUrl: string;
canManage: boolean;
2022-06-16 15:19:29 +02:00
}
2022-05-29 16:16:38 +02:00
export type { Guild };