mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-01-13 00:28:15 -05:00
14 lines
212 B
TypeScript
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>;
|
|
};
|