import TimeOfInterest from '../time/TimeOfInterest'; import { TwoLineElement } from './types/TwoLineElementTypes'; export default class Satellite { private tle; private toi?; constructor(tle: TwoLineElement, toi?: TimeOfInterest | undefined); }