forked from OpenWF/SpaceNinjaServer
Reviewed-on: OpenWF/SpaceNinjaServer#2408 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>
12 lines
288 B
TypeScript
12 lines
288 B
TypeScript
import { IInventoryChanges } from "@/src/types/purchaseTypes";
|
|
|
|
export interface IGenericUpdate {
|
|
NodeIntrosCompleted: string | string[];
|
|
// AffiliationMods: any[];
|
|
}
|
|
|
|
export interface IUpdateNodeIntrosResponse {
|
|
MissionRewards: [];
|
|
InventoryChanges: IInventoryChanges;
|
|
}
|