Fix import paths for litegraph files

This commit is contained in:
Benjamin Lu
2025-08-04 03:36:05 -04:00
parent a674b99009
commit fc287a830c
98 changed files with 429 additions and 429 deletions

View File

@@ -1,4 +1,4 @@
import type { LGraphNode } from "@/LGraphNode"
import type { LGraphNode } from "@/lib/litegraph/src/LGraphNode"
import type {
IBaseWidget,
IBooleanWidget,
@@ -11,9 +11,9 @@ import type {
IStringWidget,
IWidget,
TWidgetType,
} from "@/types/widgets"
} from "@/lib/litegraph/src/types/widgets"
import { toClass } from "@/utils/type"
import { toClass } from "@/lib/litegraph/src/utils/type"
import { BaseWidget } from "./BaseWidget"
import { BooleanWidget } from "./BooleanWidget"