Skip to content

Commit

Permalink
Separated exports and export type's
Browse files Browse the repository at this point in the history
  • Loading branch information
srares76 committed Dec 30, 2022
1 parent d18610b commit 9e9c479
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 additions & 12 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,31 +37,34 @@ export {
BasicAnimationsEmphasisStyles,
} from '../types/AnimationTypes';
export { LayoutType } from '../types/LayoutTypes';
export {
BlendMode,
FrameTypeEnum,
VerticalAlign,
TextDirection,
FlowDirection,
FitMode,
UpdateZIndexMethod,
} from '../types/FrameTypes';
export { VariableType, ImageVariableSourceType } from '../types/VariableTypes';

export type {
LayoutPropertiesType,
FrameProperties,
LayoutWithFrameProperties,
LayoutListItemType,
} from '../types/LayoutTypes';
export type {
BlendMode,
FitMode,
FlowDirection,
Frame,
FrameLayoutType,
FrameType,
FrameTypeEnum,
ImageConnectorVariableSource,
Frame,
TextFrame,
ImageFrame,
ImageFrameSource,
ImageUrlSource,
ImageUrlVariableSource,
ShapeType,
TextDirection,
TextFrame,
UpdateZIndexMethod,
VerticalAlign,
ImageUrlVariableSource,
ImageUrlSource,
ImageConnectorVariableSource,
} from '../types/FrameTypes';
export type {
Variable,
Expand Down

0 comments on commit 9e9c479

Please sign in to comment.