expo-zebra-scanner
Version:
Module to use Zebra Scanner with React Native Expo
28 lines (25 loc) • 624 B
text/typescript
type AppData = {
PACKAGE_NAME: string;
ACTIVITY_LIST: string[];
};
// There are dozens of optional parameters, these are the ones I use
// More parameters: https://techdocs.zebra.com/datawedge/13-0/guide/api/setconfig/
export type BroadcastExtras = {
PROFILE_NAME?: string;
PROFILE_ENABLED?: string;
CONFIG_MODE?: string;
PLUGIN_CONFIG?: {
PLUGIN_NAME: string;
RESET_CONFIG?: string;
PARAM_LIST?: {
[key: string]: any;
};
[key: string]: any;
};
APP_LIST?: AppData[];
[key: string]: any;
};
export type BroadcastEvent = {
action: string;
extras: BroadcastExtras | string;
};