* Injected script for detecting frontend frameworks (Vue, React, Next, Nuxt, etc.) * * Serialized via `.toString()` and evaluated in the page context. Types here are * only for the TS boundary — see scripts/store.ts for the same pattern.
| 6 | */ |
| 7 | |
| 8 | interface VueAppEl { |
| 9 | __vue__?: unknown; |
| 10 | __vue_app__?: { |
| 11 | config?: { |
| 12 | globalProperties?: { $pinia?: unknown; $store?: unknown }; |
| 13 | }; |
| 14 | }; |
| 15 | } |
| 16 | interface FrameworkWindow extends Window { |
| 17 | __REACT_DEVTOOLS_GLOBAL_HOOK__?: unknown; |
| 18 | __NEXT_DATA__?: unknown; |
nothing calls this directly
no outgoing calls
no test coverage detected