backtest-kit 1.13.2 → 1.13.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types.d.ts +1 -1
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -1952,7 +1952,7 @@ interface IActionSchema {
|
|
|
1952
1952
|
/** Action handler constructor (instantiated per strategy-frame pair) */
|
|
1953
1953
|
handler: TActionCtor | Partial<IPublicAction>;
|
|
1954
1954
|
/** Optional lifecycle and event callbacks */
|
|
1955
|
-
callbacks
|
|
1955
|
+
callbacks?: Partial<IActionCallbacks>;
|
|
1956
1956
|
}
|
|
1957
1957
|
/**
|
|
1958
1958
|
* Public action interface for custom action handler implementations.
|