@blujosi/rivetkit-svelte 2.3.7 → 2.3.8
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.
|
@@ -32,7 +32,7 @@ export interface RivetLoadOptions<T = unknown> {
|
|
|
32
32
|
/** Optional input data for actor creation. */
|
|
33
33
|
createWithInput?: unknown;
|
|
34
34
|
/** Transform incoming event data into the new value. Default: full replacement. */
|
|
35
|
-
transform?: (current: T, incoming:
|
|
35
|
+
transform?: (current: T, incoming: any) => T;
|
|
36
36
|
}
|
|
37
37
|
/** Marker class for transport.encode to recognize. */
|
|
38
38
|
export declare class RivetLoadResult<T = unknown> {
|