| 1 | interface 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected