15 lines
219 B
TypeScript
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 {};
|