forked from OpenWF/SpaceNinjaServer
12 lines
278 B
TypeScript
12 lines
278 B
TypeScript
import { IInventoryChanges } from "./purchaseTypes";
|
|
|
|
export interface IGenericUpdate {
|
|
NodeIntrosCompleted: string | string[];
|
|
// AffiliationMods: any[];
|
|
}
|
|
|
|
export interface IUpdateNodeIntrosResponse {
|
|
MissionRewards: [];
|
|
InventoryChanges: IInventoryChanges;
|
|
}
|