Files
InvokeAI/invokeai/frontend/web/src/services/api/models/Edge.ts
2023-06-14 19:26:02 +12:00

17 lines
340 B
TypeScript

/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { EdgeConnection } from './EdgeConnection';
export type Edge = {
/**
* The connection for the edge's from node and field
*/
source: EdgeConnection;
/**
* The connection for the edge's to node and field
*/
destination: EdgeConnection;
};