mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-15 12:55:51 +00:00
9 lines
185 B
TypeScript
9 lines
185 B
TypeScript
import { createContext } from 'react';
|
|
|
|
export type TerminalSize = {
|
|
columns: number;
|
|
rows: number;
|
|
};
|
|
|
|
export const TerminalSizeContext = createContext<TerminalSize | null>(null);
|