| 12345678910111213141516171819202122232425262728293031 |
- import 'recurly__recurly-js'
- import { ScopeValueStore } from './ide/scope-value-store'
- import { MetaAttributesCache } from '@/utils/meta'
- declare global {
- // eslint-disable-next-line no-unused-vars
- interface Window {
- metaAttributesCache: MetaAttributesCache
- MathJax: Record<string, any>
- // For react-google-recaptcha
- recaptchaOptions?: {
- enterprise?: boolean
- useRecaptchaNet?: boolean
- }
- expectingLinkedFileRefreshedSocketFor?: string | null
- writefull?: {
- type: 'extension' | 'integration'
- }
- WritefullStub?: any
- io?: any
- overleaf: {
- unstable: {
- store: ScopeValueStore
- }
- }
- ga?: (...args: any) => void
- gtag?: (...args: any) => void
- propensity?: (propensityId?: string) => void
- }
- }
|