Add Subgraphs (#1000)

This commit is contained in:
filtered
2025-06-28 15:21:56 -07:00
committed by GitHub
parent 3e7f9627b4
commit bcaaa00770
54 changed files with 3662 additions and 462 deletions

11
src/constants.ts Normal file
View File

@@ -0,0 +1,11 @@
/**
* Subgraph constants
*
* This entire module is exported as `Constants`.
*/
/** ID of the virtual input node of a subgraph. */
export const SUBGRAPH_INPUT_ID = -10
/** ID of the virtual output node of a subgraph. */
export const SUBGRAPH_OUTPUT_ID = -20