@shopify/app-bridge-core
Version:
**[Join our team and work on libraries like this one.](https://www.shopify.ca/careers)**
10 lines (9 loc) • 374 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getSingleButton = getSingleButton;
var Button_1 = require("./Button");
function getSingleButton(action, button, subgroups, updateCb) {
action.addChild(button, action.group, subgroups);
action.subscribeToChild(button, Button_1.Action.UPDATE, updateCb);
return button.payload;
}