mirror of
https://github.com/NoFxAiOS/nofx.git
synced 2026-07-04 19:41:02 +08:00
- Multi-AI competition mode (Qwen vs DeepSeek) - Binance Futures integration - AI self-learning mechanism - Professional web dashboard - Complete risk management system
15 lines
464 B
TypeScript
15 lines
464 B
TypeScript
import type { FormatLongFn, FormatLongWidth } from "../types.js";
|
|
export interface BuildFormatLongFnArgs<
|
|
DefaultMatchWidth extends FormatLongWidth,
|
|
> {
|
|
formats: Partial<{
|
|
[format in FormatLongWidth]: string;
|
|
}> & {
|
|
[format in DefaultMatchWidth]: string;
|
|
};
|
|
defaultWidth: DefaultMatchWidth;
|
|
}
|
|
export declare function buildFormatLongFn<
|
|
DefaultMatchWidth extends FormatLongWidth,
|
|
>(args: BuildFormatLongFnArgs<DefaultMatchWidth>): FormatLongFn;
|