summaryrefslogtreecommitdiff
path: root/nodejs/model/agent.ts
blob: dce6424f9f134c9d0e0eb4580cc5d172c33dd834 (plain)
1
2
3
4
5
6
7
8
export type Agent = {
	accountId: string;
	credits: number;
	headquarters: string;
	shipCount: number;
	startingFaction: string;
	symbol: string;
};