react-klasha
Version:
This is an reactJS library for implementing klasha payment gateway
12 lines (11 loc) • 414 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.openIOS = void 0;
const tslib_1 = require("tslib");
const open_1 = tslib_1.__importDefault(require("open"));
const common_1 = require("../common");
async function openIOS(config) {
await open_1.default(await config.ios.nativeXcodeWorkspaceDirAbs, { wait: false });
await common_1.wait(3000);
}
exports.openIOS = openIOS;