1
0
Fork 0
spacetraders/nodejs/model/agent.ts

8 lines
149 B
TypeScript

export type Agent = {
accountId: string;
credits: number;
headquarters: string;
shipCount: number;
startingFaction: string;
symbol: string;
};