UNPKG

190 BJavaScriptView Raw
1
2import { NativeModules } from 'react-native';
3
4const { RNEpsonEposPrinter } = NativeModules;
5
6export default {
7 isAvailable() {
8 return RNEpsonEposPrinter.isAvailable();
9 }
10};