MCPcopy
hub / github.com/jackwener/OpenCLI / VueAppEl

Interface VueAppEl

src/scripts/framework.ts:8–15  ·  view source on GitHub ↗

* 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.

Source from the content-addressed store, hash-verified

6 */
7
8interface VueAppEl {
9 __vue__?: unknown;
10 __vue_app__?: {
11 config?: {
12 globalProperties?: { $pinia?: unknown; $store?: unknown };
13 };
14 };
15}
16interface FrameworkWindow extends Window {
17 __REACT_DEVTOOLS_GLOBAL_HOOK__?: unknown;
18 __NEXT_DATA__?: unknown;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected