import { resolve, type Info, type Resolved } from "../../src/config" import { TuiKeybind } from "../../src/config/keybind" type ResolvedInput = Omit & { attention?: Partial keybinds?: Partial leader_timeout?: number } export function createTuiResolvedConfig(input: ResolvedInput = {}) { return resolve(input, { terminalSuspend: process.platform !== "win32" }) }