Files
oh-my-opencode/dist/shared/tmux/tmux-utils/pane-dimensions.d.ts
T

6 lines
175 B
TypeScript
Raw Normal View History

export interface PaneDimensions {
paneWidth: number;
windowWidth: number;
}
export declare function getPaneDimensions(paneId: string): Promise<PaneDimensions | null>;