Create process.d.ts

This commit is contained in:
Daniel Hougaard
2024-06-28 19:30:44 +02:00
parent 70da6878c1
commit f0a3792a64

5
backend/src/@types/process.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
declare namespace NodeJS {
interface Process {
pkg?: boolean;
}
}