@frigade/react 1.35.14 → 1.35.16

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/index.d.ts CHANGED
@@ -217,7 +217,7 @@ declare enum TriggerType {
217
217
  }
218
218
  declare function useFlows(): {
219
219
  getFlow: (flowId: string) => Flow;
220
- getFlowData: (flowId: string) => any;
220
+ getFlowData: <T>(flowId: string) => T;
221
221
  isLoading: boolean;
222
222
  getStepStatus: (flowId: string, stepId: string) => StepActionType | null;
223
223
  getFlowSteps: (flowId: string) => StepData[];