9 lines
248 B
TypeScript
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 {};
|