TP-61357: Introducing ReactNative | Insurance - Quote page experiments (#10199)

Co-authored-by: Shivam Goyal <shivam.goyal@navi.com>
This commit is contained in:
Raaj Gopal
2024-03-27 20:36:03 +05:30
committed by GitHub
parent 19b8fe49da
commit d27044fd5f
216 changed files with 25611 additions and 72 deletions

View File

@@ -0,0 +1,13 @@
import { ViewStyle } from "react-native";
import { GenericWidgetData } from "../Widget";
import { GenericActionPayload } from "../../../actions/GenericAction";
export interface SliderWidgetData extends GenericWidgetData {
sliderStyle?: ViewStyle;
minimumValue?: number;
maximumValue?: number;
// Used for demo the widget structure can be refined below is just sample.
// TODO: Raaj/Himanshu for cleanup
onValueChangeAction?: GenericActionPayload;
onSliderReleaseActionSequence?: GenericActionPayload;
}