Fix unnecessary module loading for type imports (#1053)

This commit is contained in:
filtered
2025-05-16 09:16:27 +10:00
committed by GitHub
parent b035c95cc0
commit de21f5ccd3
9 changed files with 10 additions and 15 deletions

View File

@@ -1,10 +1,10 @@
import type { Point } from "@/interfaces"
import type { CanvasPointer, LGraphCanvas, LGraphNode, Size } from "@/litegraph"
import type { CanvasMouseEvent, CanvasPointerEvent } from "@/types/events"
import type { IBaseWidget } from "@/types/widgets"
import { drawTextInArea } from "@/draw"
import { Rectangle } from "@/infrastructure/Rectangle"
import { Point } from "@/interfaces"
import { LiteGraph } from "@/litegraph"
export interface DrawWidgetOptions {