added OutputFieldType
This commit is contained in:
parent
cc49757333
commit
32726cba30
1 changed files with 6 additions and 2 deletions
|
|
@ -28,7 +28,7 @@ export type APIClassType = {
|
|||
documentation: string;
|
||||
error?: string;
|
||||
official?: boolean;
|
||||
outputs?: Array<{ types: Array<string>; selected?: string }>;
|
||||
outputs?: Array<OutputFieldType>;
|
||||
frozen?: boolean;
|
||||
flow?: FlowType;
|
||||
field_order?: string[];
|
||||
|
|
@ -63,7 +63,11 @@ export type InputFieldType = {
|
|||
refresh_button_text?: string;
|
||||
[key: string]: any;
|
||||
};
|
||||
|
||||
export type OutputFieldType = {
|
||||
types: Array<string>;
|
||||
selected?: string;
|
||||
name: string;
|
||||
};
|
||||
export type sendAllProps = {
|
||||
nodes: Node[];
|
||||
edges: Edge[];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue