@shopify/app-bridge
Version:
**Shopify is doubling our engineering staff in 2021! [Join our team and work on libraries like this one.](https://smrtr.io/5GGrc)**
12 lines (11 loc) • 370 B
TypeScript
import { MetaAction, Group } from '../types';
export declare enum Action {
INITIALIZE = "APP::CLIENT::INITIALIZE"
}
export interface ActionBase extends MetaAction {
readonly group: typeof Group.Client;
}
export interface InitializeAction extends ActionBase {
readonly type: typeof Action.INITIALIZE;
}
export declare function initialize(): InitializeAction;