| Current Path : /usr/local/lib/node_modules/@google/gemini-cli/node_modules/ink/build/ |
| Current File : //usr/local/lib/node_modules/@google/gemini-cli/node_modules/ink/build/measure-element.d.ts |
import { type DOMElement } from './dom.js';
type Output = {
/**
* Element width.
*/
width: number;
/**
* Element height.
*/
height: number;
};
/**
* Measure the dimensions of a particular `<Box>` element.
*/
declare const measureElement: (node: DOMElement) => Output;
export default measureElement;