forked from OpenWF/SpaceNinjaServer
and some initial refactoring to avoid it where possible Reviewed-on: OpenWF/SpaceNinjaServer#2407 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>
12 lines
349 B
TypeScript
12 lines
349 B
TypeScript
import { Types } from "mongoose";
|
|
import { IColor, IShipAttachments } from "@/src/types/inventoryTypes/commonInventoryTypes";
|
|
|
|
export interface IShipDatabase {
|
|
ItemType: string;
|
|
ShipOwnerId: Types.ObjectId;
|
|
ShipExteriorColors?: IColor;
|
|
AirSupportPower: string;
|
|
ShipAttachments?: IShipAttachments;
|
|
SkinFlavourItem?: string;
|
|
}
|