UNPKG

@shopify/app-bridge

Version:

[![Build Status](https://travis-ci.com/Shopify/app-bridge.svg?token=RBRyvqQyN525bnfz7J8p&branch=master)](https://travis-ci.com/Shopify/app-bridge) [![codecov](https://codecov.io/gh/Shopify/app-bridge/branch/master/graph/badge.svg?token=nZ21m39Dr6)](https:

15 lines (14 loc) 256 B
/** * @module Loading */ export declare enum ActionType { START = "APP::LOADING::START", STOP = "APP::LOADING::STOP", } export declare enum Action { START = "START", STOP = "STOP", } export interface Payload { readonly id?: string; }