mirror of
https://github.com/NoFxAiOS/nofx.git
synced 2026-07-02 18:41:01 +08:00
- Multi-AI competition mode (Qwen vs DeepSeek) - Binance Futures integration - AI self-learning mechanism - Professional web dashboard - Complete risk management system
5 lines
398 B
TypeScript
5 lines
398 B
TypeScript
import type { StateCreator, StoreMutatorIdentifier } from 'zustand/vanilla';
|
|
type Write<T, U> = Omit<T, keyof U> & U;
|
|
export declare function combine<T extends object, U extends object, Mps extends [StoreMutatorIdentifier, unknown][] = [], Mcs extends [StoreMutatorIdentifier, unknown][] = []>(initialState: T, create: StateCreator<T, Mps, Mcs, U>): StateCreator<Write<T, U>, Mps, Mcs>;
|
|
export {};
|