@qandq/cloud-gcs-core 1.2.45 → 1.2.47-C698
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -0
- package/dist/cloud-gcs-core.cjs.development.js +1 -24
- package/dist/cloud-gcs-core.cjs.development.js.map +1 -1
- package/dist/cloud-gcs-core.cjs.production.min.js +1 -1
- package/dist/cloud-gcs-core.cjs.production.min.js.map +1 -1
- package/dist/cloud-gcs-core.esm.js +2 -24
- package/dist/cloud-gcs-core.esm.js.map +1 -1
- package/dist/index.d.ts +4 -7
- package/dist/models/FlightEventMessage.d.ts +7 -0
- package/dist/models/enums/CommandTypeEnum.d.ts +0 -1
- package/dist/models/enums/LogLevel.d.ts +1 -0
- package/dist/models/telemetry/Waypoint.d.ts +2 -2
- package/dist/plugin-contract/interfaces/IEventListener.d.ts +76 -4
- package/dist/plugin-contract/interfaces/IPlugin.d.ts +4 -1
- package/dist/plugin-contract/interfaces/IPluginEventManager.d.ts +12 -3
- package/dist/plugin-contract/interfaces/IPluginServiceManager.d.ts +9 -0
- package/dist/plugin-contract/interfaces/IPluginUIManager.d.ts +32 -8
- package/dist/plugin-contract/models/PluginEventCallback.d.ts +1 -1
- package/dist/plugin-contract/system-api/IFlightEventApi.d.ts +4 -0
- package/dist/plugin-contract/system-api/IMissionApi.d.ts +6 -0
- package/dist/plugin-contract/system-api/ISystemApi.d.ts +2 -2
- package/dist/plugin-contract/system-api/aircraft-api/IAircraftApi.d.ts +51 -13
- package/dist/plugin-contract/system-api/aircraft-location-api/IAircraftLocationApi.d.ts +4 -1
- package/dist/plugin-contract/system-api/data-analyze-api/IDataAnalyzeApi.d.ts +4 -1
- package/dist/plugin-contract/system-api/handover-api/IHandOverApi.d.ts +17 -4
- package/dist/plugin-contract/system-api/selected-aircraft-api/ISelectedAircraftApi.d.ts +48 -13
- package/dist/plugin-contract/system-api/telemetry-api/ITelemetryApi.d.ts +4 -1
- package/dist/plugin-contract/system-api/units-api/IUnitsApi.d.ts +20 -5
- package/dist/plugin-contract/system-api/user-api/IUserApi.d.ts +7 -1
- package/package.json +7 -2
- package/src/index.ts +5 -11
- package/src/models/FlightEventMessage.ts +15 -0
- package/src/models/enums/CommandTypeEnum.ts +0 -1
- package/src/models/enums/LogLevel.ts +1 -0
- package/src/models/telemetry/Waypoint.ts +2 -2
- package/src/plugin-contract/interfaces/IEventListener.ts +99 -5
- package/src/plugin-contract/interfaces/IPlugin.ts +4 -1
- package/src/plugin-contract/interfaces/IPluginEventManager.ts +15 -3
- package/src/plugin-contract/interfaces/IPluginServiceManager.ts +15 -3
- package/src/plugin-contract/interfaces/IPluginUIManager.ts +36 -8
- package/src/plugin-contract/models/PluginEventCallback.ts +1 -1
- package/src/plugin-contract/system-api/IFlightEventApi.ts +5 -0
- package/src/plugin-contract/system-api/IMissionApi.ts +8 -1
- package/src/plugin-contract/system-api/ISystemApi.ts +2 -2
- package/src/plugin-contract/system-api/aircraft-api/IAircraftApi.ts +65 -14
- package/src/plugin-contract/system-api/aircraft-location-api/IAircraftLocationApi.ts +5 -1
- package/src/plugin-contract/system-api/data-analyze-api/IDataAnalyzeApi.ts +4 -1
- package/src/plugin-contract/system-api/handover-api/IHandOverApi.ts +21 -4
- package/src/plugin-contract/system-api/selected-aircraft-api/ISelectedAircraftApi.ts +60 -13
- package/src/plugin-contract/system-api/telemetry-api/ITelemetryApi.ts +5 -1
- package/src/plugin-contract/system-api/units-api/IUnitsApi.ts +24 -5
- package/src/plugin-contract/system-api/user-api/IUserApi.ts +9 -1
- package/dist/models/FlightLogType.d.ts +0 -6
- package/dist/models/MessageLog.d.ts +0 -11
- package/dist/models/PluginLogMessage.d.ts +0 -11
- package/dist/plugin-contract/system-api/IMessageLogger.d.ts +0 -6
- package/src/models/FlightLogType.ts +0 -6
- package/src/models/MessageLog.ts +0 -23
- package/src/models/PluginLogMessage.ts +0 -13
- package/src/plugin-contract/system-api/IMessageLogger.ts +0 -7
|
@@ -2,6 +2,13 @@ import {AircraftMission} from "../../models/AircraftMission";
|
|
|
2
2
|
import {AircraftIdentifier} from "../../models/AircraftIdentifier";
|
|
3
3
|
|
|
4
4
|
export interface IMissionApi {
|
|
5
|
+
/**
|
|
6
|
+
* Retrieves the mission of the specified aircraft.
|
|
7
|
+
*/
|
|
5
8
|
getMission(identifier: AircraftIdentifier): AircraftMission | undefined;
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Uploads a mission to the specified aircraft.
|
|
12
|
+
*/
|
|
6
13
|
uploadMission(identifier: AircraftIdentifier, data: AircraftMission): void;
|
|
7
|
-
}
|
|
14
|
+
}
|
|
@@ -5,7 +5,7 @@ import { IUnitsApi } from "./units-api/IUnitsApi";
|
|
|
5
5
|
import { IAircraftApi } from "./aircraft-api/IAircraftApi";
|
|
6
6
|
import { IUserApi } from "./user-api/IUserApi";
|
|
7
7
|
import {IHandOverApi} from "./handover-api/IHandOverApi";
|
|
8
|
-
import {
|
|
8
|
+
import {IFlightEventApi} from "./IFlightEventApi";
|
|
9
9
|
import {IMissionApi} from "./IMissionApi";
|
|
10
10
|
|
|
11
11
|
export interface ISystemApi {
|
|
@@ -18,5 +18,5 @@ export interface ISystemApi {
|
|
|
18
18
|
userApi: IUserApi;
|
|
19
19
|
handoverApi: IHandOverApi;
|
|
20
20
|
getOrganizationName: () => string;
|
|
21
|
-
|
|
21
|
+
flightEventApi: IFlightEventApi;
|
|
22
22
|
}
|
|
@@ -3,27 +3,78 @@ import { AircraftIdentifier } from "../../../models/AircraftIdentifier";
|
|
|
3
3
|
import {LinkHealthStatus} from "../../../models/LinkHealthStatus";
|
|
4
4
|
import {AircraftConfiguration} from "../../../models/AircraftConfiguration";
|
|
5
5
|
import {CommandTypeEnum} from "../../../models/enums/CommandTypeEnum";
|
|
6
|
-
import { LogLevel } from "../../../models/enums/LogLevel";
|
|
7
6
|
import { AircraftPlugin } from "../../../models/AircraftPlugin";
|
|
8
7
|
import {PluginCommandResponseData} from "../../../models/PluginCommandResponseData";
|
|
9
8
|
import {PluginData} from "../../../models/PluginData";
|
|
10
9
|
|
|
11
10
|
export interface IAircraftApi {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
11
|
+
/**
|
|
12
|
+
* Indicates whether the aircraft is being controlled.
|
|
13
|
+
*/
|
|
14
|
+
isBeingControlled(identifier: AircraftIdentifier): boolean;
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Indicates whether the aircraft is being observed.
|
|
18
|
+
*/
|
|
19
|
+
isBeingObserved(identifier: AircraftIdentifier): boolean;
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Returns the list of observed aircraft.
|
|
23
|
+
*/
|
|
24
|
+
getObservingAircraft(): AircraftIdentifier[];
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* Returns the list of controlled aircraft.
|
|
28
|
+
*/
|
|
29
|
+
getControllingAircraft(): AircraftIdentifier[];
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* Returns the 3D model file URL of the aircraft.
|
|
33
|
+
*/
|
|
34
|
+
getAircraft3dModel(aircraftId: number): string;
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Allows to set pilotage statuses for aircraft, including controlling, observing, or releasing them.
|
|
38
|
+
*/
|
|
39
|
+
setPilotageStatuses(AircraftPilotageStatuses: AircraftPilotageStatus[]): void;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Changes the active selected aircraft.
|
|
43
|
+
*/
|
|
44
|
+
changeActiveAircraft(aircraftId: number): void;
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Sends data to the mission controller via Airtext channel.
|
|
48
|
+
*/
|
|
49
|
+
postAirText(identifier: AircraftIdentifier, data: any): void;
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Sends a command to a loaded plugin in the mission controller and returns the response for the command.
|
|
53
|
+
*/
|
|
54
|
+
sendPluginCommandWithResponse(identifier: AircraftIdentifier, input: PluginData): Promise<PluginCommandResponseData | null>;
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Executes a command on the aircraft, sending the required parameters in the data object based on the command type.
|
|
58
|
+
*/
|
|
23
59
|
executeCommand(identifier: AircraftIdentifier, command: CommandTypeEnum, data: any): void;
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* Returns the aircraft link health status information.
|
|
63
|
+
*/
|
|
24
64
|
getAircraftLinkHealthStatus(aircraftIdentifier: AircraftIdentifier): LinkHealthStatus | undefined;
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* Returns the aircraft configuration information.
|
|
68
|
+
*/
|
|
25
69
|
getAircraftConfiguration(identifier: AircraftIdentifier): AircraftConfiguration | null;
|
|
26
|
-
|
|
27
|
-
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* Returns true if the aircraft is a simulator.
|
|
73
|
+
*/
|
|
74
|
+
isSimulator(aircraftIdentifier: AircraftIdentifier): boolean;
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* Lists the installed plugins in the mission controller.
|
|
78
|
+
*/
|
|
28
79
|
getAircraftPlugins(aircraftIdentifier: AircraftIdentifier): AircraftPlugin[];
|
|
29
80
|
}
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import {AircraftLocation} from "../../../models/AircraftLocation";
|
|
2
2
|
|
|
3
3
|
export interface IAircraftLocationApi {
|
|
4
|
-
|
|
4
|
+
/**
|
|
5
|
+
* Provides the current location information of the aircraft.
|
|
6
|
+
*/
|
|
7
|
+
getAircraftLocation(aircraftId: number): AircraftLocation | null;
|
|
5
8
|
}
|
|
9
|
+
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { IPluginDataAnalysis } from '../../../models/data-analysis/IPluginDataAnalysis';
|
|
2
2
|
|
|
3
3
|
export interface IDataAnalyzeApi {
|
|
4
|
-
|
|
4
|
+
/**
|
|
5
|
+
*
|
|
6
|
+
*/
|
|
7
|
+
getMessage(aircraftId: number): IPluginDataAnalysis | null;
|
|
5
8
|
}
|
|
@@ -1,8 +1,25 @@
|
|
|
1
1
|
import {HandOverResponseData} from "../../../models/handover/HandOverResponseData";
|
|
2
2
|
|
|
3
3
|
export interface IHandOverApi {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
/**
|
|
5
|
+
* Sends a request for the specified pilot to take control over the actively controlled aircraft.
|
|
6
|
+
* Initiates a request to take control if the selected aircraft is currently controlled by the specified pilot.
|
|
7
|
+
*/
|
|
8
|
+
handOver(aircraftId: number, toUserCode: string): void;
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Used to respond to an incoming handover request.
|
|
12
|
+
*/
|
|
13
|
+
sendHandOverResponse(answer: boolean, handOverCommand: HandOverResponseData): void;
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Sends a request to the pilot currently controlling the specified aircraft to hand over control to you.
|
|
17
|
+
*/
|
|
18
|
+
requestHandOver(aircraftId: number | undefined): void;
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Sends a message to the specified user.
|
|
22
|
+
*/
|
|
23
|
+
sendPilotMessage(toUserCode: string, data: any): void;
|
|
8
24
|
}
|
|
25
|
+
|
|
@@ -4,20 +4,67 @@ import {AircraftLocation} from "../../../models/AircraftLocation";
|
|
|
4
4
|
import {AircraftIdentifier} from "../../../models/AircraftIdentifier";
|
|
5
5
|
import {CommandTypeEnum} from "../../../models/enums/CommandTypeEnum";
|
|
6
6
|
import {PluginData} from "../../../models/PluginData";
|
|
7
|
-
import { LogLevel } from "../../../models/enums/LogLevel";
|
|
8
7
|
|
|
9
8
|
export interface ISelectedAircraftApi {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
9
|
+
/**
|
|
10
|
+
* Indicates whether the selected aircraft is being controlled.
|
|
11
|
+
*/
|
|
12
|
+
isBeingControlled(): boolean | null;
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Returns the identifier of the selected aircraft.
|
|
16
|
+
*/
|
|
17
|
+
getAircraftIdentifier(): AircraftIdentifier | null;
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Returns the type of the selected aircraft.
|
|
21
|
+
*/
|
|
22
|
+
getAircraftType(): string | null;
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* Returns the 3D model address of the selected aircraft.
|
|
26
|
+
*/
|
|
27
|
+
getAircraft3dModel(): string;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Returns the configuration settings of the selected aircraft.
|
|
31
|
+
*/
|
|
32
|
+
getAircraftConfiguration(): AircraftConfiguration | null;
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* Returns the latest telemetry data of the selected aircraft.
|
|
36
|
+
*/
|
|
37
|
+
getTelemetry(): AircraftTelemetry | null;
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Returns the location information of the selected aircraft.
|
|
41
|
+
*/
|
|
42
|
+
getLocation(): AircraftLocation | null;
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* Sends data to the selected aircraft via Airtext channel.
|
|
46
|
+
*/
|
|
47
|
+
postAirText(data: any): void;
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* Sends a command to a plugin installed on the selected aircraft.
|
|
51
|
+
*/
|
|
52
|
+
sendPluginCommand(data: PluginData): void;
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Sends a command to the selected aircraft.
|
|
56
|
+
*/
|
|
19
57
|
executeCommand(command: CommandTypeEnum, data: any): void;
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Indicates whether this plugin is supported on the selected aircraft.
|
|
61
|
+
* Returns false if the plugin is not installed on the aircraft.
|
|
62
|
+
*/
|
|
63
|
+
isPluginSupported(): boolean;
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* Returns the configuration of this plugin on the selected aircraft.
|
|
67
|
+
*/
|
|
68
|
+
getPluginConfig(): any;
|
|
23
69
|
}
|
|
70
|
+
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import {AircraftTelemetry} from "../../../models/telemetry/AircraftTelemetry";
|
|
2
2
|
|
|
3
3
|
export interface ITelemetryApi {
|
|
4
|
-
|
|
4
|
+
/**
|
|
5
|
+
* Retrieves the latest telemetry data of the specified aircraft.
|
|
6
|
+
*/
|
|
7
|
+
getTelemetry(aircraftId: number): AircraftTelemetry | null;
|
|
5
8
|
}
|
|
9
|
+
|
|
@@ -2,9 +2,28 @@ import {UnitSystemEnum} from "../../../models/enums/UnitSystemEnum";
|
|
|
2
2
|
import {UnitTypeEnum} from "../../../models/enums/UnitTypeEnum";
|
|
3
3
|
|
|
4
4
|
export interface IUnitsApi {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
5
|
+
/**
|
|
6
|
+
*
|
|
7
|
+
*/
|
|
8
|
+
convertToString(system: UnitSystemEnum, type: UnitTypeEnum, value: number): string;
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
*
|
|
12
|
+
*/
|
|
13
|
+
convertNumber(system: UnitSystemEnum, type: UnitTypeEnum, value: number): number;
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
*/
|
|
18
|
+
convertToSI(system: UnitSystemEnum, unit: UnitTypeEnum, value: number): number;
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
*/
|
|
23
|
+
getUnitText(system: UnitSystemEnum, type: UnitTypeEnum): string;
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
28
|
+
getUnitSystem(): UnitSystemEnum;
|
|
10
29
|
}
|
|
@@ -2,6 +2,14 @@ import { User } from "../../../models/user/User";
|
|
|
2
2
|
import {UserStatus} from "../../../models/UserStatus";
|
|
3
3
|
|
|
4
4
|
export interface IUserApi {
|
|
5
|
-
|
|
5
|
+
/**
|
|
6
|
+
* Returns information about the current user.
|
|
7
|
+
*/
|
|
8
|
+
getUserInfo(): User;
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Lists active users in the system.
|
|
12
|
+
*/
|
|
6
13
|
getActiveUsers(): UserStatus[];
|
|
7
14
|
}
|
|
15
|
+
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { LogLevel } from "../index";
|
|
2
|
-
export declare class MessageLog {
|
|
3
|
-
source: string;
|
|
4
|
-
time: string;
|
|
5
|
-
message: string;
|
|
6
|
-
level: LogLevel;
|
|
7
|
-
data: object;
|
|
8
|
-
timestamp: number;
|
|
9
|
-
details: string;
|
|
10
|
-
constructor(message: string, logLevel: LogLevel, details: string, data?: object, source?: string);
|
|
11
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { LogLevel } from "./enums/LogLevel";
|
|
2
|
-
import { AircraftIdentifier } from "./AircraftIdentifier";
|
|
3
|
-
export interface PluginLogMessage {
|
|
4
|
-
msg: string;
|
|
5
|
-
details?: string;
|
|
6
|
-
logLevel: LogLevel;
|
|
7
|
-
data: any | null;
|
|
8
|
-
}
|
|
9
|
-
export interface PluginAircraftLogMessage extends PluginLogMessage {
|
|
10
|
-
aircraftIdentifier: AircraftIdentifier;
|
|
11
|
-
}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { PluginAircraftLogMessage, PluginLogMessage } from "../../models/PluginLogMessage";
|
|
2
|
-
export interface IMessageLoggerApi {
|
|
3
|
-
publishPilotLogMessage: (log: PluginAircraftLogMessage, isSendOtherPlugins: boolean) => void;
|
|
4
|
-
publishLogMessage: (log: PluginLogMessage) => void;
|
|
5
|
-
publishAircraftLogMessage: (log: PluginAircraftLogMessage) => void;
|
|
6
|
-
}
|
package/src/models/MessageLog.ts
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import {LogLevel} from "../index";
|
|
2
|
-
|
|
3
|
-
export class MessageLog {
|
|
4
|
-
source: string;
|
|
5
|
-
time: string;
|
|
6
|
-
message: string;
|
|
7
|
-
level: LogLevel;
|
|
8
|
-
data: object;
|
|
9
|
-
timestamp: number;
|
|
10
|
-
details: string;
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
public constructor(message: string, logLevel: LogLevel, details: string, data?: object,source?: string, ) {
|
|
14
|
-
this.timestamp = new Date().getTime()
|
|
15
|
-
this.time = new Date().toLocaleTimeString('en-US', { hour: '2-digit', minute: '2-digit', second: '2-digit' });
|
|
16
|
-
this.source = source ?? "System";
|
|
17
|
-
this.message = message;
|
|
18
|
-
this.level = logLevel;
|
|
19
|
-
this.data = data ? data : {};
|
|
20
|
-
this.details = details;
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import {LogLevel} from "./enums/LogLevel";
|
|
2
|
-
import {AircraftIdentifier} from "./AircraftIdentifier";
|
|
3
|
-
|
|
4
|
-
export interface PluginLogMessage {
|
|
5
|
-
msg: string;
|
|
6
|
-
details?: string;
|
|
7
|
-
logLevel: LogLevel;
|
|
8
|
-
data: any | null
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export interface PluginAircraftLogMessage extends PluginLogMessage{
|
|
12
|
-
aircraftIdentifier: AircraftIdentifier
|
|
13
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import {PluginAircraftLogMessage, PluginLogMessage} from "../../models/PluginLogMessage";
|
|
2
|
-
|
|
3
|
-
export interface IMessageLoggerApi {
|
|
4
|
-
publishPilotLogMessage: (log: PluginAircraftLogMessage, isSendOtherPlugins: boolean) => void;
|
|
5
|
-
publishLogMessage: (log: PluginLogMessage) => void;
|
|
6
|
-
publishAircraftLogMessage: (log: PluginAircraftLogMessage) => void;
|
|
7
|
-
}
|