NullTranslationWebsite/global.d.ts
2025-01-17 19:52:56 -05:00

13 lines
247 B
TypeScript

declare namespace NodeJS {
interface ProcessEnv {
NEXT_PUBLIC_API_URL: string;
STRAPI_API_TOKEN: string;
}
}
declare global {
interface Window {
kofiWidgetOverlay: any;
dataLayer: any[];
}
}
export {};