@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
8 lines (7 loc) • 390 B
TypeScript
import { unstable_Picker as Picker } from '@shopify/app-bridge-core/actions';
import { AnyAction } from 'redux';
import { PickerStore } from './types';
export type Action = Picker.PickerAction | AnyAction;
export declare const defaultPickerStore: null;
declare function pickerReducer(state: PickerStore | null | undefined, action: Action): PickerStore | null;
export default pickerReducer;