@flowerforce/flower-core 3.1.2-beta.0 → 3.1.2-beta.2
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/dist/index.cjs.js +748 -851
- package/dist/index.esm.js +748 -851
- package/dist/src/interfaces/ReducerInterface.d.ts +5 -0
- package/package.json +1 -1
@@ -144,6 +144,11 @@ export type ReducersFunctions<T extends Record<string, any> = Record<string, Flo
|
|
144
144
|
persist: boolean;
|
145
145
|
nodes: Node[];
|
146
146
|
initialData: any;
|
147
|
+
initialState: {
|
148
|
+
startId?: string;
|
149
|
+
current?: string;
|
150
|
+
history?: string[];
|
151
|
+
};
|
147
152
|
}>;
|
148
153
|
/**
|
149
154
|
* @param state
|