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
14 lines
376 B
TypeScript
14 lines
376 B
TypeScript
export declare type SourceLocation = {
|
|
line: number;
|
|
column: number;
|
|
};
|
|
export declare class LinesAndColumns {
|
|
private string;
|
|
private offsets;
|
|
constructor(string: string);
|
|
locationForIndex(index: number): SourceLocation | null;
|
|
indexForLocation(location: SourceLocation): number | null;
|
|
private lengthOfLine;
|
|
}
|
|
export default LinesAndColumns;
|