Skip to content

Commit

Permalink
🐛 fix: export (#57)
Browse files Browse the repository at this point in the history
Co-authored-by: jiangchu <[email protected]>
  • Loading branch information
ModestFun and jiangchu authored Dec 27, 2023
1 parent 58937b0 commit 2f09fbb
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
import { BaseEdge, EdgeLabelRenderer, EdgeProps, Handle, Position, getBezierPath } from 'reactflow';
import {
BaseEdge,
EdgeLabelRenderer,
EdgeProps,
Handle,
Position,
getBezierPath,
getSmoothStepPath,
} from 'reactflow';

export * from './Background';
export { default as Background } from './Background';
Expand All @@ -23,4 +31,12 @@ export { NodeField, useNodeFieldStyles } from './NodeField';
export type { ExtraAction } from './NodeField';
export { default as RadiusEdge } from './RadiusEdge';
export * from './constants';
export { BaseEdge, EdgeLabelRenderer, Handle, Position, getBezierPath, type EdgeProps };
export {
BaseEdge,
EdgeLabelRenderer,
Handle,
Position,
getBezierPath,
getSmoothStepPath,
type EdgeProps,
};

0 comments on commit 2f09fbb

Please sign in to comment.