@shopify/app-bridge-host
Version:
App Bridge Host contains middleware and components that are meant to be consumed by the app's host. The middleware and `Frame` component are responsible for facilitating messages posted between the client and host, and used to act on actions sent from the
19 lines (18 loc) • 512 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SET_PAGINATION = 'PRIVATE_APP::TITLEBAR::SET_PAGINATION';
exports.SET_APP_INFO = 'PRIVATE_APP::TITLEBAR::SET_APP_INFO';
function setPagination(payload) {
return {
type: exports.SET_PAGINATION,
payload: payload,
};
}
exports.setPagination = setPagination;
function setAppInfo(payload) {
return {
type: exports.SET_APP_INFO,
payload: payload,
};
}
exports.setAppInfo = setAppInfo;