module.d.ts 247 B

1234567891011121314
  1. import "next";
  2. import { initializeStore } from "./store";
  3. declare global {
  4. interface Window {
  5. GA_INITIALIZED: boolean;
  6. }
  7. }
  8. declare module "next" {
  9. export interface NextPageContext {
  10. store: ReturnType<typeof initializeStore>;
  11. }
  12. }