@koordinates/xstate-tree 5.1.0-next.8 → 5.1.0-next.9
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/lib/xstate-tree.d.ts +4 -4
- package/package.json +1 -1
package/lib/xstate-tree.d.ts
CHANGED
|
@@ -173,7 +173,7 @@ export declare type CanHandleEvent<TMachine extends AnyStateMachine> = (e: Event
|
|
|
173
173
|
* @param machine - The xstate machine to create the xstate-tree machine from
|
|
174
174
|
* @param options - the xstate-tree options
|
|
175
175
|
*/
|
|
176
|
-
export declare function createXStateTreeMachine<TMachine extends AnyStateMachine, TSelectorsOutput = ContextFrom<TMachine>, TActionsOutput = Record<never, string>, TSlots extends readonly Slot[] = []>(machine: TMachine, options: V2BuilderMeta<TMachine, TSelectorsOutput, TActionsOutput, TSlots>): XstateTreeMachine<TMachine>;
|
|
176
|
+
export declare function createXStateTreeMachine<TMachine extends AnyStateMachine, TSelectorsOutput = ContextFrom<TMachine>, TActionsOutput = Record<never, string>, TSlots extends readonly Slot[] = []>(machine: TMachine, options: V2BuilderMeta<TMachine, TSelectorsOutput, TActionsOutput, TSlots>): XstateTreeMachine<TMachine, TSelectorsOutput, TActionsOutput, TSlots>;
|
|
177
177
|
|
|
178
178
|
declare type EmptyKeys<T> = keyof {
|
|
179
179
|
[K in keyof T as IsEmptyObject<T[K], true> extends true ? K : never]: T[K];
|
|
@@ -716,13 +716,13 @@ export declare type XstateTreeHistory<T = unknown> = History_2<{
|
|
|
716
716
|
/**
|
|
717
717
|
* @public
|
|
718
718
|
*/
|
|
719
|
-
export declare type XstateTreeMachine<TMachine extends AnyStateMachine> = TMachine & XstateTreeMachineInjection<TMachine>;
|
|
719
|
+
export declare type XstateTreeMachine<TMachine extends AnyStateMachine, TSelectorsOutput = ContextFrom<TMachine>, TActionsOutput = Record<never, string>, TSlots extends readonly Slot[] = Slot[]> = TMachine & XstateTreeMachineInjection<TMachine, TSelectorsOutput, TActionsOutput, TSlots>;
|
|
720
720
|
|
|
721
721
|
/**
|
|
722
722
|
* @internal
|
|
723
723
|
*/
|
|
724
|
-
export declare type XstateTreeMachineInjection<TMachine extends AnyStateMachine> = {
|
|
725
|
-
_xstateTree: XstateTreeMachineStateSchemaV2<TMachine>;
|
|
724
|
+
export declare type XstateTreeMachineInjection<TMachine extends AnyStateMachine, TSelectorsOutput = ContextFrom<TMachine>, TActionsOutput = Record<never, string>, TSlots extends readonly Slot[] = Slot[]> = {
|
|
725
|
+
_xstateTree: XstateTreeMachineStateSchemaV2<TMachine, TSelectorsOutput, TActionsOutput, TSlots>;
|
|
726
726
|
};
|
|
727
727
|
|
|
728
728
|
/**
|
package/package.json
CHANGED