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; }