Spaces:
Running
Running
superxuu commited on
Commit ·
cc6c14d
1
Parent(s): f47c8b3
fix: Add missing initial_index to startGame action type
Browse files
frontend/src/store/gameStore.ts
CHANGED
|
@@ -47,6 +47,7 @@ export interface GameState {
|
|
| 47 |
klines: KLine[];
|
| 48 |
total_candles: number;
|
| 49 |
initial_price: number;
|
|
|
|
| 50 |
}) => void;
|
| 51 |
nextCandle: () => void;
|
| 52 |
buy: (volume: number) => boolean;
|
|
|
|
| 47 |
klines: KLine[];
|
| 48 |
total_candles: number;
|
| 49 |
initial_price: number;
|
| 50 |
+
initial_index: number;
|
| 51 |
}) => void;
|
| 52 |
nextCandle: () => void;
|
| 53 |
buy: (volume: number) => boolean;
|