fix(sdk-js): send accepts any input

This commit is contained in:
Tat Dat Duong
2025-04-01 00:15:32 +02:00
parent cf7136297e
commit aef463c633
+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 {