18 lines
448 B
TypeScript
18 lines
448 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;
|
|
}
|
|
|
|
export interface IReward {
|
|
name: string;
|
|
chance: number;
|
|
rotation?: string;
|
|
}
|