@tempots/dom 28.6.0 → 28.6.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.
- package/package.json +1 -1
- package/std/signal-utils.d.ts +2 -2
package/package.json
CHANGED
package/std/signal-utils.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GetValueType, RemoveSignals, Values } from '../types/domain';
|
|
1
|
+
import { GetValueType, NValue, RemoveSignals, Values } from '../types/domain';
|
|
2
2
|
import { AnySignal, Computed, Prop, Signal } from './signal';
|
|
3
3
|
import { Value } from './value';
|
|
4
4
|
/**
|
|
@@ -261,4 +261,4 @@ export declare const bind: <FN extends (...args: any[]) => R, R = ReturnType<FN>
|
|
|
261
261
|
* @returns - A computed signal that emits the first non-null and non-undefined value.
|
|
262
262
|
* @public
|
|
263
263
|
*/
|
|
264
|
-
export declare const coalesce: <T extends Value<
|
|
264
|
+
export declare const coalesce: <T, L extends Array<NValue<T>>, R extends Value<T>>(...args: [...L, R]) => Computed<R>;
|