mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
Added client support for server URIs
This commit is contained in:
19
client/src/@types/server.d.ts
vendored
19
client/src/@types/server.d.ts
vendored
@@ -1,6 +1,15 @@
|
||||
interface ServerData {
|
||||
units: {[key: string]: UnitData},
|
||||
bullseye: any, //TODO
|
||||
airbases: any, //TODO
|
||||
logs: any //TODO
|
||||
interface UnitsData {
|
||||
units: {[key: string]: UnitData},
|
||||
}
|
||||
|
||||
interface AirbasesData {
|
||||
airbases: {[key: string]: any},
|
||||
}
|
||||
|
||||
interface BullseyesData {
|
||||
bullseyes: {[key: string]: any},
|
||||
}
|
||||
|
||||
interface LogData {
|
||||
logs: {[key: string]: string},
|
||||
}
|
||||
1
client/src/@types/unit.d.ts
vendored
1
client/src/@types/unit.d.ts
vendored
@@ -20,7 +20,6 @@ interface FormationData {
|
||||
isLeader: boolean;
|
||||
isWingman: boolean;
|
||||
leaderID: number;
|
||||
wingmen: Unit[];
|
||||
wingmenIDs: number[];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user