Files
oh-my-opencode/dist/features/tmux-subagent/pane-state-parser.d.ts
T
2026-03-14 04:56:50 +00:00

9 lines
248 B
TypeScript

import type { TmuxPaneInfo } from "./types";
type ParsedPaneState = {
windowWidth: number;
windowHeight: number;
panes: TmuxPaneInfo[];
};
export declare function parsePaneStateOutput(stdout: string): ParsedPaneState | null;
export {};