| 39 | * @implements {Action} |
| 40 | */ |
| 41 | export class PageGoAction implements RendererAction { |
| 42 | async run( |
| 43 | action: IPageGoAction, |
| 44 | renderer: ListenerContext, |
| 45 | event: RendererEvent<any> |
| 46 | ) { |
| 47 | window.history.go(action.args?.delta || 0); |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * 浏览器刷新 |
nothing calls this directly
no outgoing calls
no test coverage detected