Claptrap-ui/src/data/Guild.ts

9 lines
113 B
TypeScript
Raw Normal View History

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