| 2 | |
| 3 | declare global { |
| 4 | interface Window { |
| 5 | strapi: { |
| 6 | backendURL: string; |
| 7 | isEE: boolean; |
| 8 | features: { |
| 9 | SSO: 'sso'; |
| 10 | isEnabled: (featureName?: string) => boolean; |
| 11 | }; |
| 12 | future: { |
| 13 | isEnabled: (name: string) => boolean; |
| 14 | }; |
| 15 | projectType: string; |
| 16 | telemetryDisabled: boolean; |
| 17 | flags: { |
| 18 | nps: boolean; |
| 19 | promoteEE: boolean; |
| 20 | }; |
| 21 | }; |
| 22 | } |
| 23 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…