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

17 lines (15 loc) 408 B
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, }; } export { SET_APP_INFO, SET_PAGINATION, setAppInfo, setPagination };