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 { SynchronizeDialogData } from './synchronize-dialog-data.model';
/**
* The internal dialog data for the synchronize dialog.
* Sets default values.
*/
export declare class SynchronizeDialogDataInternal implements SynchronizeDialogData {
title: string;
closeButtonLabel: string;
syncAllButtonLabel: string;
undoAllButtonLabel: string;
constructor(data?: SynchronizeDialogData);
}