SpaceNinjaServer/src/types/genericUpdate.ts

12 lines
278 B
TypeScript

import { IInventoryChanges } from "./purchaseTypes";
export interface IGenericUpdate {
NodeIntrosCompleted: string | string[];
// AffiliationMods: any[];
}
export interface IUpdateNodeIntrosResponse {
MissionRewards: [];
InventoryChanges: IInventoryChanges;
}