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.
22 lines (21 loc) • 466 B
TypeScript
/**
* The type for the synchronize dialog data.
*/
export interface SynchronizeDialogData {
/**
* The title of the dialog.
*/
title?: string;
/**
* The label for the close button.
*/
closeButtonLabel?: string;
/**
* The label for the button that syncs everything.
*/
syncAllButtonLabel?: string;
/**
* The label for the button that undoes all local changes.
*/
undoAllButtonLabel?: string;
}