From 7ed2856298fda412780bc4159201834758e5f8e1 Mon Sep 17 00:00:00 2001 From: Jan Andrle Date: Fri, 14 Mar 2025 19:24:17 +0100 Subject: [PATCH] :bug: signal.set(value, force) --- dist/esm-with-signals.d.ts | 2 +- dist/esm-with-signals.min.d.ts | 2 +- dist/esm.d.ts | 2 +- dist/esm.min.d.ts | 2 +- dist/iife-with-signals.d.ts | 2 +- dist/iife-with-signals.min.d.ts | 2 +- dist/iife.d.ts | 2 +- dist/iife.min.d.ts | 2 +- signals.d.ts | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/dist/esm-with-signals.d.ts b/dist/esm-with-signals.d.ts index c421f51..e3cf46e 100644 --- a/dist/esm-with-signals.d.ts +++ b/dist/esm-with-signals.d.ts @@ -4,7 +4,7 @@ export interface Signal { /** The current value of the signal */ get(): V; /** Set new value of the signal */ - set(value: V): V; + set(value: V, force?: boolean): V; toJSON(): V; valueOf(): V; } diff --git a/dist/esm-with-signals.min.d.ts b/dist/esm-with-signals.min.d.ts index c421f51..e3cf46e 100644 --- a/dist/esm-with-signals.min.d.ts +++ b/dist/esm-with-signals.min.d.ts @@ -4,7 +4,7 @@ export interface Signal { /** The current value of the signal */ get(): V; /** Set new value of the signal */ - set(value: V): V; + set(value: V, force?: boolean): V; toJSON(): V; valueOf(): V; } diff --git a/dist/esm.d.ts b/dist/esm.d.ts index 724e170..f2e3992 100644 --- a/dist/esm.d.ts +++ b/dist/esm.d.ts @@ -4,7 +4,7 @@ export interface Signal { /** The current value of the signal */ get(): V; /** Set new value of the signal */ - set(value: V): V; + set(value: V, force?: boolean): V; toJSON(): V; valueOf(): V; } diff --git a/dist/esm.min.d.ts b/dist/esm.min.d.ts index 724e170..f2e3992 100644 --- a/dist/esm.min.d.ts +++ b/dist/esm.min.d.ts @@ -4,7 +4,7 @@ export interface Signal { /** The current value of the signal */ get(): V; /** Set new value of the signal */ - set(value: V): V; + set(value: V, force?: boolean): V; toJSON(): V; valueOf(): V; } diff --git a/dist/iife-with-signals.d.ts b/dist/iife-with-signals.d.ts index 775c91b..a3ed2cc 100644 --- a/dist/iife-with-signals.d.ts +++ b/dist/iife-with-signals.d.ts @@ -4,7 +4,7 @@ export interface Signal { /** The current value of the signal */ get(): V; /** Set new value of the signal */ - set(value: V): V; + set(value: V, force?: boolean): V; toJSON(): V; valueOf(): V; } diff --git a/dist/iife-with-signals.min.d.ts b/dist/iife-with-signals.min.d.ts index 775c91b..a3ed2cc 100644 --- a/dist/iife-with-signals.min.d.ts +++ b/dist/iife-with-signals.min.d.ts @@ -4,7 +4,7 @@ export interface Signal { /** The current value of the signal */ get(): V; /** Set new value of the signal */ - set(value: V): V; + set(value: V, force?: boolean): V; toJSON(): V; valueOf(): V; } diff --git a/dist/iife.d.ts b/dist/iife.d.ts index d3688f5..3f662a9 100644 --- a/dist/iife.d.ts +++ b/dist/iife.d.ts @@ -4,7 +4,7 @@ export interface Signal { /** The current value of the signal */ get(): V; /** Set new value of the signal */ - set(value: V): V; + set(value: V, force?: boolean): V; toJSON(): V; valueOf(): V; } diff --git a/dist/iife.min.d.ts b/dist/iife.min.d.ts index d3688f5..3f662a9 100644 --- a/dist/iife.min.d.ts +++ b/dist/iife.min.d.ts @@ -4,7 +4,7 @@ export interface Signal { /** The current value of the signal */ get(): V; /** Set new value of the signal */ - set(value: V): V; + set(value: V, force?: boolean): V; toJSON(): V; valueOf(): V; } diff --git a/signals.d.ts b/signals.d.ts index 05a3441..8e8ebc8 100644 --- a/signals.d.ts +++ b/signals.d.ts @@ -2,7 +2,7 @@ export interface Signal { /** The current value of the signal */ get(): V; /** Set new value of the signal */ - set(value: V): V; + set(value: V, force?: boolean): V; toJSON(): V; valueOf(): V; }