(context?: ModuleContext)
| 596 | } |
| 597 | |
| 598 | export function reloadPage(context?: ModuleContext): void { |
| 599 | console.warn('reloadPage() is deprecated. Use Frame.reloadPage() instead.'); |
| 600 | |
| 601 | return Frame.reloadPage(context); |
| 602 | } |
| 603 | |
| 604 | // attach on global, so it can be overwritten in NativeScript Angular |
| 605 | global.__onLiveSyncCore = Frame.reloadPage; |
nothing calls this directly
no test coverage detected