forked from OpenWF/SpaceNinjaServer
24 lines
541 B
TypeScript
24 lines
541 B
TypeScript
export interface ISellRequest {
|
|
Items: {
|
|
Suits?: ISellItem[];
|
|
LongGuns?: ISellItem[];
|
|
Pistols?: ISellItem[];
|
|
Melee?: ISellItem[];
|
|
Recipes?: ISellItem[];
|
|
Upgrades?: ISellItem[];
|
|
};
|
|
SellPrice: number;
|
|
SellCurrency:
|
|
| "SC_RegularCredits"
|
|
| "SC_PrimeBucks"
|
|
| "SC_FusionPoints"
|
|
| "SC_CrewShipFusionPoints"
|
|
| "SC_Resources";
|
|
buildLabel: string;
|
|
}
|
|
|
|
export interface ISellItem {
|
|
String: string; // oid or uniqueName
|
|
Count: number;
|
|
}
|