@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
18 lines (17 loc) • 673 B
TypeScript
import { ActionCreatorsMapObject } from 'redux';
import { unstable_Picker } from '@shopify/app-bridge-core/actions';
/**
* @unstable This API may be updated without warning in the future
*/
export interface PickerActionCreatorsMap extends ActionCreatorsMapObject {
cancel: typeof unstable_Picker.cancel;
open: typeof unstable_Picker.open;
select: typeof unstable_Picker.select;
update: typeof unstable_Picker.update;
search: typeof unstable_Picker.search;
loadMore: typeof unstable_Picker.loadMore;
}
/**
* @unstable This API may be updated without warning in the future
*/
export declare const pickerActionCreatorsMap: PickerActionCreatorsMap;