UNPKG

react-native-dom-expo

Version:

A patch library to make Expo work with react-native-dom

16 lines (11 loc) 376 B
import { RCTModule } from 'react-native-dom'; import ExpoPermissions from '../../expo-permissions/src/ExpoPermissions.web'; export default class Permissions extends RCTModule { static moduleName = 'ExpoPermissions'; $$getAsync(...types) { return ExpoPermissions.getAsync(...types); } $$askAsync(...types) { return ExpoPermissions.askAsync(...types); } }