Fix for type error with optional outpyt JSONSchema

This commit is contained in:
Matt Aitken
2023-02-21 11:00:04 +00:00
parent a7044511bb
commit 810996f26f
+2 -2
View File
@@ -5,7 +5,7 @@ export type FunctionData = {
name: string;
friendlyName: string;
description: string;
input: JSONSchema | undefined;
output: JSONSchema;
input?: JSONSchema;
output?: JSONSchema;
functionCode: string;
};