Skip to content

Commit

Permalink
fix(index.ts): fix exported type
Browse files Browse the repository at this point in the history
  • Loading branch information
nartc committed Feb 12, 2020
1 parent df77d80 commit fb6ae32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ import {
const useBarcodeRead = Platform.select({
android: useBarcodeReadAndroid,
ios: useBarcodeReadIOS,
});
}) as typeof useBarcodeReadIOS;

const useCustomBarcodeRead = Platform.select({
android: useCustomBarcodeReadAndroid,
ios: useCustomBarcodeReadIOS,
});
}) as typeof useCustomBarcodeReadIOS;

const BarcodeMaskWithOuterLayout = withOuterLayout(BarcodeMask);

Expand Down

0 comments on commit fb6ae32

Please sign in to comment.