SpaceNinjaServer/src/types/shipTypes.ts

12 lines
349 B
TypeScript
Raw Normal View History

2024-12-23 09:15:41 +01:00
import { Types } from "mongoose";
import { IColor, IShipAttachments } from "@/src/types/inventoryTypes/commonInventoryTypes";
2023-06-05 04:16:49 +08:00
export interface IShipDatabase {
ItemType: string;
2024-12-23 09:15:41 +01:00
ShipOwnerId: Types.ObjectId;
ShipExteriorColors?: IColor;
AirSupportPower: string;
ShipAttachments?: IShipAttachments;
SkinFlavourItem?: string;
}