@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)**
28 lines (27 loc) • 766 B
TypeScript
import { ActionSet } from '../helper';
import type { AnyAction, MetaAction } from '../types';
import { ClientApplication } from '../../client';
import { Action, Options, RequestOptions } from './types';
/**
* @internal
*/
export declare type FeaturesAction = MetaAction | AnyAction;
/**
* A set of Actions for Updating, Requesting Features of AppBridge
* @public
*/
export declare class Features extends ActionSet {
constructor(app: ClientApplication<any>, options?: Options);
/**
* @public
*/
dispatch(action: Action.REQUEST, payload: RequestOptions): this;
/**
* @internal
*/
private dispatchFeaturesAction;
}
/**
* @public
*/
export declare function create(app: ClientApplication<any>, options?: Options): Features;