From c0de3ad941744cdac6f83a636899483a17f66891 Mon Sep 17 00:00:00 2001 From: moklick Date: Thu, 2 May 2024 17:49:06 +0200 Subject: [PATCH] chore(libs): export Align type --- packages/react/src/index.ts | 1 + packages/react/src/types/general.ts | 4 ++-- packages/svelte/src/lib/index.ts | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) 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,