Remove entry point import, merge modules (#590)

* Remove unused import in lib entry point

* [Refactor] Merge type util modules
This commit is contained in:
filtered
2025-02-25 12:25:42 +11:00
committed by GitHub
parent ad8dd7a9d8
commit a4b9704a80
3 changed files with 10 additions and 10 deletions

View File

@@ -22,7 +22,6 @@ import type {
ColorOption,
IColorable,
} from "./interfaces"
import { isColorable } from "./typeGuards"
import type { SlotShape, LabelPosition, SlotDirection, SlotType } from "./draw"
import type { IWidget } from "./types/widgets"
import type { RenderShape, TitleMode } from "./types/globalEnums"
@@ -75,8 +74,8 @@ export {
Size,
ColorOption,
IColorable,
isColorable,
}
export { isColorable } from "./utils/type"
export { IWidget }
export { LGraphBadge, BadgePosition }
export { SlotShape, LabelPosition, SlotDirection, SlotType }