| 12345678910111213141516171819 |
- import "next";
- import { initializeStore } from "./store";
- declare module "*.svg";
- declare global {
- interface Window {
- GA_INITIALIZED: boolean;
- grecaptcha: any;
- isCaptchaReady: boolean;
- captchaId: boolean;
- }
- }
- declare module "next" {
- export interface NextPageContext {
- store: ReturnType<typeof initializeStore>;
- }
- }
|