feat(WIP): process 국가선택 추가

This commit is contained in:
2021-12-18 23:14:04 +09:00
parent e2ed918437
commit 9bd151cdc2
9 changed files with 307 additions and 110 deletions
+13 -1
View File
@@ -51,4 +51,16 @@ export type procGeneralRawItemList = procGeneralRawItem[];
export function convertGeneralList(keys: procGeneralKeyList, rawList: procGeneralRawItemList): procGeneralList{
return combineArray(rawList, keys) as procGeneralList;
}
}
export type procNationItem = {
id: number,
name: string,
color: string,
power: number,
info?: string,
notAvailable?: boolean,
};
export type procNationList = procNationItem[];