UNPKG
expo-zxing
Version:
latest (0.1.0)
0.1.0
ZXing module for Expo
github.com/7nohe/expo-zxing
7nohe/expo-zxing
expo-zxing
/
src
/
ExpoZxing.types.ts
10 lines
(7 loc)
•
210 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
ViewProps
}
from
"react-native"
;
export
type
OnScannedEvent
= {
result
:
string
; };
export
type
CameraPreviewProps
= {
onScanned
?:
(
event
: { nativeEvent: OnScannedEvent }
) =>
void
; } &
ViewProps
;