Commit c98ddb3 1 parent 80322ff commit c98ddb3 Copy full SHA for c98ddb3
File tree 3 files changed +23
-11
lines changed
3 files changed +23
-11
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,6 @@ tests/baselines/reference/dt
62
62
.failed-tests
63
63
TEST-results.xml
64
64
.eslintcache
65
+ package.g.props
65
66
* v8.log
66
67
/lib /
67
- package.g.props
Original file line number Diff line number Diff line change 1
1
This file explains how Visual Studio created the project.
2
2
3
3
The following tools were used to generate this project:
4
+
4
5
- TypeScript Compiler (tsc)
5
6
6
7
The following steps were used to generate this project:
8
+
7
9
- Create project file (` Content.Source.esproj ` ).
8
10
- Create ` launch.json ` to enable debugging.
9
- - Create ` nuget.config ` to specify location of the JavaScript Project System SDK (which is used in the first line in ` Content.Source.esproj ` ).
10
- - Install npm packages and create ` tsconfig.json ` : ` npm init && npm i --save-dev eslint typescript @types/node @typescript-eslint/eslint-plugin @typescript-eslint/parser && npx tsc --init --sourceMap true ` .
11
+ - Create ` nuget.config ` to specify location of the JavaScript Project System SDK (which is used in the first line in
12
+ ` Content.Source.esproj ` ).
13
+ - Install npm packages and create ` tsconfig.json ` :
14
+ ` npm init && npm i --save-dev eslint typescript @types/node @typescript-eslint/eslint-plugin @typescript-eslint/parser && npx tsc --init --sourceMap true ` .
11
15
- Create ` app.ts ` .
12
16
- Update ` package.json ` entry point.
13
17
- Update TypeScript build scripts in ` package.json ` .
Original file line number Diff line number Diff line change 1
- import { EngineType } from '../defs'
2
- import { AircraftFeature } from '../defs'
3
- import { AircraftType } from '../defs'
4
- import { FlightPlanType } from '../defs'
5
- import { GateType } from '../defs'
6
- import { SimType } from '../defs'
7
- import { PirepState } from '../defs'
8
- import { Surface } from '../defs'
1
+ import {
2
+ AircraftFeature ,
3
+ AircraftType ,
4
+ EngineType ,
5
+ FlightPlanType ,
6
+ GateType ,
7
+ PirepState ,
8
+ SimType ,
9
+ Surface ,
10
+ } from '../defs'
9
11
10
12
/** Point-in-time telemetry from the aircraft */
11
13
export interface Telemetry {
@@ -23,6 +25,12 @@ export interface Telemetry {
23
25
dateTime : DateTimeOffset
24
26
/** The date/time on the client machine */
25
27
dateTimeSystem : DateTimeOffset
28
+ /**
29
+ * Empty weight of the aircraft
30
+ *
31
+ * @inheritdoc
32
+ */
33
+ emptyWeight : Mass
26
34
/** The number of engines */
27
35
engineCount : number
28
36
/** Array with the fuel flow values for an engine */
You can’t perform that action at this time.
0 commit comments