Skip to content

Commit

Permalink
change to default export
Browse files Browse the repository at this point in the history
  • Loading branch information
tienifr committed Jan 25, 2024
1 parent 4971bde commit 22f73e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/ImageView/types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type {StyleProp, ViewStyle} from 'react-native';
import type {ZoomRange} from '@components/MultiGestureCanvas/types';
import type ZoomRange from '@components/MultiGestureCanvas/types';

type ImageViewProps = {
/** Whether source url requires authentication */
Expand Down
3 changes: 1 addition & 2 deletions src/components/MultiGestureCanvas/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@ type ZoomRange = {
max: number;
};

// eslint-disable-next-line import/prefer-default-export
export type {ZoomRange};
export default ZoomRange;

0 comments on commit 22f73e2

Please sign in to comment.