UNPKG

powerpagestoolkit

Version:

Reference, manipulate, and engage with Power Pages sites through the nodes in the DOM; use a variety of custom methods that allow customizing your power pages site quicker and easier.

17 lines (16 loc) 432 B
/// <reference path="../globals.d.ts" /> /** * @class LoadingSpinner - instantiate a spinner to handle loading state in your powerpages site */ /********/ /********/ export default class LoadingSpinner extends HTMLElement { private element; constructor(); /** * @method hide - Hides the loading spinner */ hide(): void; /** * @method show - Shows the loading spinner */ show(): void; }