(path: string, state: any)
| 6 | function getHistory(navigate: any): any { |
| 7 | return { |
| 8 | push(path: string, state: any) { |
| 9 | navigate(path, { replace: false, state }); |
| 10 | }, |
| 11 | replace(path: string, state: any) { |
| 12 | navigate(path, { replace: true, state }); |
| 13 | }, |
nothing calls this directly
no test coverage detected