fix: Optional input

This commit is contained in:
J H
2024-07-25 13:25:18 -06:00
parent 099b77cf9b
commit 1a0536d212
6 changed files with 35 additions and 9 deletions

View File

@@ -232,7 +232,7 @@ export class SystemForEmbassy implements System {
effects: Effects,
options: {
procedure: JsonPath
input: unknown
input?: unknown
timeout?: number | undefined
},
): Promise<RpcResult> {
@@ -294,7 +294,7 @@ export class SystemForEmbassy implements System {
effects: Effects,
options: {
procedure: JsonPath
input: unknown
input?: unknown
timeout?: number | undefined
},
): Promise<unknown> {