mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-14 00:04:59 -05:00
17 lines
340 B
TypeScript
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;
|
|
};
|