Files
github-stats-extended/apps/frontend/src/globals.d.ts
T

15 lines
219 B
TypeScript

declare global {
interface CustomProcess {
env: {
FETCH_MULTI_PAGE_STARS: string | undefined;
PAT_1: string | undefined;
};
}
interface Window {
process?: CustomProcess;
}
}
export {};