1
0
mirror of https://github.com/jaandrle/deka-dom-el synced 2026-05-16 02:01:24 +02:00

🐛 signal.set(value, force)

This commit is contained in:
2025-03-14 19:24:17 +01:00
parent a2b0223c4f
commit 7ed2856298
9 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ export interface Signal<V, A> {
/** 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;
}
+1 -1
View File
@@ -4,7 +4,7 @@ export interface Signal<V, A> {
/** 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;
}
+1 -1
View File
@@ -4,7 +4,7 @@ export interface Signal<V, A> {
/** 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;
}
+1 -1
View File
@@ -4,7 +4,7 @@ export interface Signal<V, A> {
/** 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;
}
+1 -1
View File
@@ -4,7 +4,7 @@ export interface Signal<V, A> {
/** 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;
}
+1 -1
View File
@@ -4,7 +4,7 @@ export interface Signal<V, A> {
/** 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;
}
+1 -1
View File
@@ -4,7 +4,7 @@ export interface Signal<V, A> {
/** 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;
}
+1 -1
View File
@@ -4,7 +4,7 @@ export interface Signal<V, A> {
/** 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;
}
+1 -1
View File
@@ -2,7 +2,7 @@ export interface Signal<V, A> {
/** 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;
}