react-native-onyx
Version:
State management for React Native
14 lines (13 loc) • 503 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const ModuleProxy_1 = require("../ModuleProxy");
const PerformanceProxy = (0, ModuleProxy_1.createModuleProxy)(() => {
try {
// eslint-disable-next-line @typescript-eslint/no-var-requires
return require('react-native-performance').default;
}
catch (_a) {
throw new ModuleProxy_1.OptionalDependencyNotInstalledError('react-native-performance');
}
});
exports.default = PerformanceProxy;
;