UNPKG

@shopify/app-bridge-host

Version:

App Bridge Host contains components and middleware to be consumed by the app's host, as well as the host itself. The middleware and `Frame` component are responsible for facilitating communication between the client and host, and used to act on actions se

22 lines (19 loc) 505 B
'use strict'; var SET_PAGINATION = 'PRIVATE_APP::TITLEBAR::SET_PAGINATION'; var SET_APP_INFO = 'PRIVATE_APP::TITLEBAR::SET_APP_INFO'; function setPagination(payload) { return { type: SET_PAGINATION, payload: payload, }; } function setAppInfo(payload) { return { type: SET_APP_INFO, payload: payload, }; } exports.SET_APP_INFO = SET_APP_INFO; exports.SET_PAGINATION = SET_PAGINATION; exports.setAppInfo = setAppInfo; exports.setPagination = setPagination;