Files
TheGame/packages/web/utils/roleHelpers.ts

14 lines
212 B
TypeScript

export type RoleMap = {
[category: string]: CategoryOption;
};
export type RoleOption = {
value: string;
label: string;
};
export type CategoryOption = {
label: string;
options: Array<RoleOption>;
};