NullTranslationWebsite/global.d.ts

23 lines
468 B
TypeScript

import { link } from "fs";
declare namespace NodeJS {
interface ProcessEnv {
NEXT_PUBLIC_API_URL: string;
STRAPI_API_TOKEN: string;
}
}
declare global {
interface Window {
kofiWidgetOverlay: any;
dataLayer: any[];
googletag: {
cmd: any[];
pubads: () => {
refresh: () => void;
enableSingleRequest: () => void;
};
enableServices: () => void;
};
}
}
export {};