//#region lib/supporting/KuvaLogEntry.d.ts
interface KuvaLogEntry {
  start: string;
  end: string;
  missiontype?: string;
  solnode: string;
  solnodedata?: SolnodeData;
  realtime?: string;
}
interface SolnodeData {
  name: string;
  tile: string;
  planet: string;
  enemy: string;
  type: string;
  node_type: string;
  archwing: boolean;
  sharkwing: boolean;
}
//#endregion
export { SolnodeData as n, KuvaLogEntry as t };