expo-esc-pos-utils
Version:
Expo module for ESC/POS printer utilities, supporting image printing and text formatting
18 lines • 494 B
TypeScript
import type { StyleProp, ViewStyle } from 'react-native';
export type OnLoadEventPayload = {
url: string;
};
export type ExpoEscPosUtilsModuleEvents = {
onChange: (params: ChangeEventPayload) => void;
};
export type ChangeEventPayload = {
value: string;
};
export type ExpoEscPosUtilsViewProps = {
url: string;
onLoad: (event: {
nativeEvent: OnLoadEventPayload;
}) => void;
style?: StyleProp<ViewStyle>;
};
//# sourceMappingURL=ExpoEscPosUtils.types.d.ts.map