UNPKG

@shopify/app-bridge

Version:

> **Maintenance Mode:** Although apps using this package will continue to function, it is no longer receiving updates. For new projects, please use the [CDN version of App Bridge](https://shopify.dev/docs/api/app-home?accordionItem=getting-started-build-y

20 lines (19 loc) 984 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.create = exports.Action = exports.Fullscreen = exports.exit = exports.enter = void 0; var Fullscreen_1 = require("@shopify/app-bridge-core/actions/Fullscreen"); Object.defineProperty(exports, "Fullscreen", { enumerable: true, get: function () { return Fullscreen_1.Fullscreen; } }); Object.defineProperty(exports, "Action", { enumerable: true, get: function () { return Fullscreen_1.Action; } }); var Fullscreen_2 = require("@shopify/app-bridge-core/actions/Fullscreen"); Object.defineProperty(exports, "enter", { enumerable: true, get: function () { return Fullscreen_2.enter; } }); Object.defineProperty(exports, "exit", { enumerable: true, get: function () { return Fullscreen_2.exit; } }); /** * Returns a new instance of a Fullscreen action set * @param app the client application * * @beta */ function create(app) { return new Fullscreen_1.Fullscreen(app); } exports.create = create;