From 0453c0a3b05cc6b1a012301fd909f8a31925e7ec Mon Sep 17 00:00:00 2001 From: Theodore Kruczek Date: Mon, 19 Feb 2024 03:30:21 -0500 Subject: [PATCH] refactor: :recycle: allow null rcs and vmag --- src/interfaces/SatelliteParams.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/interfaces/SatelliteParams.ts b/src/interfaces/SatelliteParams.ts index 1bd6cb6..d390ea8 100644 --- a/src/interfaces/SatelliteParams.ts +++ b/src/interfaces/SatelliteParams.ts @@ -6,11 +6,11 @@ import { EciVec3, SpaceObjectType, TleLine1, TleLine2 } from '../types/types'; export interface SatelliteParams { name?: string; - rcs?: number; + rcs?: number | null; tle1: TleLine1; tle2: TleLine2; type?: SpaceObjectType; - vmag?: number; + vmag?: number | null; sccNum?: string; intlDes?: string; position?: EciVec3;