diff options
Diffstat (limited to 'node_modules/@jet-app/app-store/tmp/src/api/models/page-refresh-policy.js')
| -rw-r--r-- | node_modules/@jet-app/app-store/tmp/src/api/models/page-refresh-policy.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/node_modules/@jet-app/app-store/tmp/src/api/models/page-refresh-policy.js b/node_modules/@jet-app/app-store/tmp/src/api/models/page-refresh-policy.js new file mode 100644 index 0000000..96a0732 --- /dev/null +++ b/node_modules/@jet-app/app-store/tmp/src/api/models/page-refresh-policy.js @@ -0,0 +1,17 @@ +/** + * Model for Page Refresh Policy + */ +import { Model } from "./base"; +/** @public */ +export class PageRefreshPolicy extends Model { + constructor(strategy, updateDelayInterval, timeSinceOnScreenInterval, timeToLiveEndDate, refreshWhileVisible = false, refreshForDeviceDrivenContentChange = false) { + super(); + this.strategy = strategy; + this.updateDelayInterval = updateDelayInterval; + this.timeSinceOnScreenInterval = timeSinceOnScreenInterval; + this.timeToLiveEndDate = timeToLiveEndDate; + this.refreshWhileVisible = refreshWhileVisible; + this.refreshForDeviceDrivenContentChange = refreshForDeviceDrivenContentChange; + } +} +//# sourceMappingURL=page-refresh-policy.js.map
\ No newline at end of file |
