You are here

ManifestInterface.php in Progressive Web App 8

Same filename and directory in other branches
  1. 2.x src/ManifestInterface.php

Namespace

Drupal\pwa

File

src/ManifestInterface.php
View source
<?php

namespace Drupal\pwa;


/**
 * Manifest JSON building service.
 */
interface ManifestInterface {

  /**
   * Build the manifest json string based on the configuration.
   *
   * @return string
   *   Manifest JSON string.
   */
  public function getOutput();

  /**
   * Deletes the images that are used for the manifest file.
   */
  public function deleteImage();

}

Interfaces

Namesort descending Description
ManifestInterface Manifest JSON building service.