Skip to content

Commit

Permalink
refactor: ♻️ allow null rcs and vmag
Browse files Browse the repository at this point in the history
  • Loading branch information
thkruz committed Feb 19, 2024
1 parent eae7a33 commit 0453c0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/interfaces/SatelliteParams.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 0453c0a

Please sign in to comment.