fix(sdk-js): send accepts any input (#4099)

This commit is contained in:
David Duong
2025-04-03 14:00:31 +02:00
committed by GitHub
+1 -1
View File
@@ -19,7 +19,7 @@ export type StreamEvent =
export interface Send {
node: string;
input: Record<string, unknown> | null;
input: unknown | null;
}
export interface Command {