ngx-pwa
Version:
Provides functionality around the progressive web app functionality in angular. Most notably the an approach to cache POST, UPDATE and DELETE requests.
13 lines (12 loc) • 409 B
TypeScript
import { VersionReadyDialogData } from './version-ready-dialog-data.model';
/**
* The internal data to customize the Version Ready Dialog.
* Sets default values.
*/
export declare class VersionReadyDialogDataInternal implements VersionReadyDialogData {
title: string;
message: string;
confirmButtonLabel: string;
cancelButtonLabel: string;
constructor(data?: VersionReadyDialogData);
}