UNPKG

ngx-gem-spaas

Version:

This library contains services, components, images and styles to provide a unified look and way-of-working throughout GEM SPaaS.

14 lines (13 loc) 643 B
/** * New version configuration object to be provided via "forRoot" method of the SpaasModule. * * @property {number} reminder default is zero. If not zero and hasBackdrop === true, this sets the interval * (in minutes) at which to prompt the user to load the newly deployed version. Will be floored to a 5-minute minimum. * @property {boolean} hasBackdrop default is true. If false, no backdrop is shown for the bottom-sheet pop-up (and * so the pop-up can only be dismissed by accepting the new version). */ export declare class NewVersionConfigModel { reminder?: number; hasBackdrop?: boolean; constructor(objIn: any); }