mirror of
https://github.com/NoFxAiOS/nofx.git
synced 2026-07-09 22:10:57 +08:00
Initial commit: NOFX AI Trading System
- Multi-AI competition mode (Qwen vs DeepSeek) - Binance Futures integration - AI self-learning mechanism - Professional web dashboard - Complete risk management system
This commit is contained in:
20
web/node_modules/date-fns/parse/_lib/parsers/StandAloneLocalDayParser.d.cts
generated
vendored
Normal file
20
web/node_modules/date-fns/parse/_lib/parsers/StandAloneLocalDayParser.d.cts
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
import type { Match } from "../../../locale/types.js";
|
||||
import { Parser } from "../Parser.js";
|
||||
import type { ParseFlags, ParseResult, ParserOptions } from "../types.js";
|
||||
export declare class StandAloneLocalDayParser extends Parser<number> {
|
||||
priority: number;
|
||||
parse(
|
||||
dateString: string,
|
||||
token: string,
|
||||
match: Match,
|
||||
options: ParserOptions,
|
||||
): ParseResult<number>;
|
||||
validate<DateType extends Date>(_date: DateType, value: number): boolean;
|
||||
set<DateType extends Date>(
|
||||
date: DateType,
|
||||
_flags: ParseFlags,
|
||||
value: number,
|
||||
options: ParserOptions,
|
||||
): DateType;
|
||||
incompatibleTokens: string[];
|
||||
}
|
||||
Reference in New Issue
Block a user