Export enum (#589)

* Revert "Export enum (#587)"

This reverts commit cf8565eb13.

* Export enums
This commit is contained in:
filtered
2025-02-25 12:08:04 +11:00
committed by GitHub
parent a8b6f1e1ec
commit ad8dd7a9d8

View File

@@ -25,7 +25,7 @@ import type {
import { isColorable } from "./typeGuards"
import type { SlotShape, LabelPosition, SlotDirection, SlotType } from "./draw"
import type { IWidget } from "./types/widgets"
import { RenderShape, TitleMode } from "./types/globalEnums"
import type { RenderShape, TitleMode } from "./types/globalEnums"
import type { CanvasEventDetail } from "./types/events"
import { LiteGraphGlobal } from "./LiteGraphGlobal"
import { loadPolyfills } from "./polyfills"
@@ -79,9 +79,8 @@ export {
}
export { IWidget }
export { LGraphBadge, BadgePosition }
export { RenderShape, TitleMode }
export { SlotShape, LabelPosition, SlotDirection, SlotType }
export { EaseFunction, LinkMarkerShape, LGraphEventMode } from "./types/globalEnums"
export { CanvasItem, EaseFunction, LinkMarkerShape, LGraphEventMode, RenderShape, TitleMode } from "./types/globalEnums"
export type {
SerialisableGraph,
SerialisableLLink,