Files
gecko/srde/miniprogram/typings/index.d.ts
Daniel a94bd44c3a Initial commit
Made-with: Cursor
2026-02-28 18:43:09 +08:00

18 lines
454 B
TypeScript

declare interface IAppOption {
globalData: {
token: string | null;
account: {
total_capital: number;
current_capital: number;
current_drawdown: number;
max_drawdown: number;
consecutive_losses: number;
trading_locked_until: string | null;
status: 'tradable' | 'compressed' | 'locked';
daily_risk_limit?: number;
single_risk_limit?: number;
} | null;
accountLoadedAt: number;
};
}