We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66d8d80 commit 9293105Copy full SHA for 9293105
packages/browser-utils/src/metrics/instrument.ts
@@ -95,7 +95,14 @@ interface Metric {
95
* support that API). For pages that are restored from the bfcache, this
96
* value will be 'back-forward-cache'.
97
*/
98
- navigationType: 'navigate' | 'reload' | 'back-forward' | 'back-forward-cache' | 'prerender' | 'restore';
+ navigationType:
99
+ | 'navigate'
100
+ | 'reload'
101
+ | 'back-forward'
102
+ | 'back-forward-cache'
103
+ | 'prerender'
104
+ | 'restore'
105
+ | 'soft-navigation';
106
}
107
108
type InstrumentHandlerType = InstrumentHandlerTypeMetric | InstrumentHandlerTypePerformanceObserver;
0 commit comments