feat, refac: 메인 페이지에서 커맨드 리스트를 동적으로 받아옴

This commit is contained in:
2023-03-01 02:17:09 +09:00
parent e721642a10
commit c5c7f96c1a
6 changed files with 120 additions and 39 deletions
+7
View File
@@ -219,6 +219,13 @@ export type CommandItem = {
searchText?: string;
};
export type CommandTableResponse = ValidResponse & {
commandTable: {
category: string;
values: CommandItem[];
}[];
}
type diplomacyInfo = {
name: string,
color?: string,