You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The object that exposes the validation with its settings.
25
32
*/
26
33
exportinterfaceDiscountFunctionSettingsData{
27
-
id: Discount;
34
+
id: string;
28
35
metafields: Metafield[];
29
36
}
37
+
38
+
/**
39
+
* Represents a reactive signal interface that provides both immediate value access and subscription-based updates. Enables real-time synchronization with changing data through the observer pattern.
40
+
*/
41
+
exportinterfaceReadonlySignalLike<T>{
42
+
/**
43
+
* The current value of the field.
44
+
*/
45
+
readonlyvalue: T;
46
+
/**
47
+
* Subscribes to field changes and calls the provided function whenever the field updates. Returns an unsubscribe function to clean up the subscription.
0 commit comments