mirror of
https://github.com/NoFxAiOS/nofx.git
synced 2026-07-03 19:11:02 +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
229 B
TypeScript
8 lines
229 B
TypeScript
/**
|
|
* Checks if an element contains another given element.
|
|
*
|
|
* @param context the context element
|
|
* @param node the element to check
|
|
*/
|
|
export default function contains(context: Element, node: Element): boolean | undefined;
|