import type { PlayerCharacter } from "./player-character-types.js"; import type { Encounter } from "./types.js"; export interface ExportBundle { readonly version: number; readonly exportedAt: string; readonly encounter: Encounter; readonly undoStack: readonly Encounter[]; readonly redoStack: readonly Encounter[]; readonly playerCharacters: readonly PlayerCharacter[]; }