MCPcopy
hub / github.com/OpenHands/OpenHands / Window

Interface Window

frontend/global.d.ts:1–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1interface Window {
2 __APP_MODE__?: "saas" | "oss";
3 __GITHUB_CLIENT_ID__?: string | null;
4 Reo?: {
5 init: (config: { clientID: string }) => void;
6 identify: (identity: {
7 username: string;
8 type: "github" | "email";
9 other_identities?: Array<{
10 username: string;
11 type: "github" | "email";
12 }>;
13 firstname?: string;
14 lastname?: string;
15 company?: string;
16 }) => void;
17 };
18 grecaptcha?: {
19 enterprise: {
20 ready: (callback: () => void) => void;
21 execute: (
22 siteKey: string,
23 options: { action: string },
24 ) => Promise<string>;
25 };
26 };
27}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected