Files
opencode-plugin-tmux-utils/dist/features/tmux-subagent/pane-state-parser.d.ts
Dmytro Stanchiev 15be750b5c need dist for plugins
Signed-off-by: Dmytro Stanchiev <git@dmytros.dev>
2026-04-19 19:15:51 -04: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 {};