@ethlete/core 4.24.0 → 4.24.1
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.
|
@@ -132,6 +132,11 @@ export type SyncSignalOptions = {
|
|
|
132
132
|
* @default false
|
|
133
133
|
*/
|
|
134
134
|
skipSyncRead?: boolean;
|
|
135
|
+
/**
|
|
136
|
+
* If true, the first time the effect will be triggered will be skipped.
|
|
137
|
+
* @default false
|
|
138
|
+
*/
|
|
139
|
+
skipFirstRun?: boolean;
|
|
135
140
|
};
|
|
136
141
|
export declare const syncSignal: <T>(from: Signal<T>, to: WritableSignal<T>, options?: SyncSignalOptions) => EffectRef;
|
|
137
142
|
export interface ControlValueSignalOptions {
|