Updated music system with new extractor and small tweaks

This commit is contained in:
2024-08-23 20:21:46 +02:00
parent d350552d25
commit 3c8848f615
6 changed files with 83 additions and 11 deletions

10
src/enviroment.d.ts vendored Normal file
View File

@@ -0,0 +1,10 @@
declare global {
namespace NodeJS {
interface ProcessEnv {
NODE_ENV?: "dev" | "prod"
TYPESCRIPT?: "true"
}
}
}
export { }