Split LGraphNode out to TS file

This commit is contained in:
filtered
2024-09-25 18:05:25 +10:00
committed by Chenlei Hu
parent f13b7c8818
commit 1c835b04dc
4 changed files with 2580 additions and 2567 deletions

View File

@@ -1,5 +1,6 @@
// @ts-nocheck
import { LiteGraph, LGraphCanvas, LGraphGroup, LGraphNode } from "./litegraph";
import { LiteGraph, LGraphCanvas, LGraphGroup } from "./litegraph";
import { LGraphNode } from "./LGraphNode";
import { LLink } from "./LLink";
//*********************************************************************************

2574
src/LGraphNode.ts Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -1,4 +1,5 @@
import { LiteGraph, LGraphNode } from "./litegraph";
import { LiteGraph } from "./litegraph";
import { LGraphNode } from "./LGraphNode";
import { drawSlot, SlotShape, SlotDirection, SlotType, LabelPosition } from "./draw";
// *************************************************************

File diff suppressed because it is too large Load Diff