diff --git a/packages/react/src/index.ts b/packages/react/src/index.ts index 5ab91928..f8ba9ea6 100644 --- a/packages/react/src/index.ts +++ b/packages/react/src/index.ts @@ -38,6 +38,7 @@ export * from './types'; // system types export { + type Align, type SmoothStepPathOptions, type BezierPathOptions, ConnectionLineType, diff --git a/packages/react/src/types/general.ts b/packages/react/src/types/general.ts index 6f1105a7..2f518dca 100644 --- a/packages/react/src/types/general.ts +++ b/packages/react/src/types/general.ts @@ -63,8 +63,8 @@ export type OnSelectionChangeParams = { export type OnSelectionChangeFunc = (params: OnSelectionChangeParams) => void; -export type FitViewParams = FitViewParamsBase; -export type FitViewOptions = FitViewOptionsBase; +export type FitViewParams = FitViewParamsBase; +export type FitViewOptions = FitViewOptionsBase; export type FitView = (fitViewOptions?: FitViewOptions) => boolean; export type OnInit = ( reactFlowInstance: ReactFlowInstance diff --git a/packages/svelte/src/lib/index.ts b/packages/svelte/src/lib/index.ts index 72808cda..6a646f80 100644 --- a/packages/svelte/src/lib/index.ts +++ b/packages/svelte/src/lib/index.ts @@ -51,6 +51,7 @@ export type { SvelteFlowStore } from '$lib/store/types'; // system types export { + type Align, type SmoothStepPathOptions, type BezierPathOptions, ConnectionLineType,