We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d5a347 commit 1057655Copy full SHA for 1057655
src/Tle.ts
@@ -5,8 +5,10 @@ export class Tle {
5
public name: string
6
public line1: string
7
public line2: string
8
+ public raw: any
9
10
constructor(tleModel: any) {
11
+ this.raw = tleModel
12
this.satelliteId = tleModel.satelliteId
13
this.name = tleModel.name
14
this.line1 = tleModel.line1
0 commit comments