mirror of
https://github.com/NoFxAiOS/nofx.git
synced 2026-07-01 18:11:20 +08:00
- Multi-AI competition mode (Qwen vs DeepSeek) - Binance Futures integration - AI self-learning mechanism - Professional web dashboard - Complete risk management system
8 lines
216 B
TypeScript
8 lines
216 B
TypeScript
/**
|
|
* Returns the height of a given element.
|
|
*
|
|
* @param node the element
|
|
* @param client whether to use `clientHeight` if possible
|
|
*/
|
|
export default function height(node: HTMLElement, client?: boolean): number;
|