12 lines
357 B
TypeScript
12 lines
357 B
TypeScript
![]() |
export const inventoryFields = ["RawUpgrades", "MiscItems", "Consumables", "Recipes"] as const;
|
||
|
export type IInventoryFieldType = (typeof inventoryFields)[number];
|
||
|
|
||
|
export interface IMissionRewardResponse {
|
||
|
StoreItem?: string;
|
||
|
TypeName: string;
|
||
|
UpgradeLevel?: number;
|
||
|
ItemCount: number;
|
||
|
TweetText: string;
|
||
|
ProductCategory: string;
|
||
|
}
|