/** * Get the debug file path(s). * * Always creates a timestamped file in tmp dir and a symlink in project root. * * @param {string} [suffix] - Optional suffix appended to the base name (e.g. 'replay'). * @returns {{root: string, tmp: string}} root path (symlink), tmp path (actual file) */ export function getDebugFilePath(suffix?: string): { root: string; tmp: string; };