8 lines
149 B
TypeScript
8 lines
149 B
TypeScript
export type Agent = {
|
|
accountId: string;
|
|
credits: number;
|
|
headquarters: string;
|
|
shipCount: number;
|
|
startingFaction: string;
|
|
symbol: string;
|
|
};
|