Type Alias: WebviewNavType
ts
type WebviewNavType = "push" | "replace" | "pop" | "load" | "hash";Defined in: packages/sdk/src/webview-service.ts:26
The kind of in-frame navigation reported by WebFrame.onNavigate.
"load"— a full document load (the initial navigation, or any non-SPA link click /location.hrefassignment)."push"/"replace"—history.pushState/history.replaceState, the SPA route-change primitives (React Router, Vue Router, etc.)."pop"— apopstateevent (back/forward within the SPA)."hash"— ahashchangeevent.